blob: 1b50de4f3b11e06cb57bb7eb0b5bc08c9a50ae2b (
plain) (
blame)
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
|
[workspace]
members = [
"crates/*"
]
resolver = "3"
[workspace.dependencies]
# Used to remove indexing checks and to reduce the degree to which code
# may be misused.
generativity = "1"
# Used to test some code for greater quality assurance.
proptest = "1"
# Used to make more thorough tests using `proptest`
proptest-state-machine = "0.4"
[profile.release]
opt-level = 3
codegen-units = 1
debug = false
strip = "symbols"
panic = "abort"
lto = "thin"
[profile.release-profile]
inherits = "release"
debug = true
strip = false
|