forked from rust-cv/cv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 801 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[workspace]
members = [
"cv",
"cv-core",
"cv-geom",
"cv-pinhole",
"cv-optimize",
"cv-sfm",
"akaze",
"eight-point",
"lambda-twist",
"nister-stewenius",
"vslam-sandbox",
"kpdraw",
"tutorial-code/chapter2-first-program",
"tutorial-code/chapter3-akaze-feature-extraction",
"tutorial-code/chapter4-feature-matching",
"tutorial-code/chapter5-geometric-verification",
]
[profile.dev]
# The tests take a very long time without optimization.
opt-level = 1
# This is needed to reduce memory usage during compilation, or CI will fail
codegen-units = 1
[profile.bench]
# Necessary to generate flamegraphs
debug = true
codegen-units = 1
lto = "fat"
[profile.release]
# Necessary to generate flamegraphs
debug = true
codegen-units = 1
lto = "fat"