-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 634 Bytes
/
Copy pathCargo.toml
File metadata and controls
42 lines (36 loc) · 634 Bytes
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
39
40
41
42
[workspace]
members = [
"crates/infotheory",
"crates/infotheory_py",
"crates/benchman",
"vendor/zpaq_rs",
]
default-members = [
"crates/infotheory",
"crates/benchman",
"vendor/zpaq_rs",
]
exclude = ["vendor/nyx-lite"]
resolver = "3"
[workspace.lints.rust]
warnings = "warn"
[workspace.lints.clippy]
all = "warn"
[profile.dev]
opt-level = 3
lto = "fat"
codegen-units = 1
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
panic = "abort"
[profile.python-release]
inherits = "release"
lto = false
[profile.bench]
inherits = "release"
lto = "fat"
codegen-units = 1
opt-level = 3
debug = true