-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (55 loc) · 971 Bytes
/
Copy pathCargo.toml
File metadata and controls
60 lines (55 loc) · 971 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[workspace]
members = [
"l64-core",
"l64-locus",
"l64-research",
"l64-kernel",
"l64-registry",
"l64-selector",
"l64-cli",
"l64-runtime",
"l64-canon",
"l64-atlas",
"l64-cert",
"l64-bundle",
"l64-policy",
"l64-observe",
"l64-admin",
"l64-command",
"l64",
"l64-testkit",
]
resolver = "2"
[workspace.package]
edition = "2024"
version = "0.1.0"
license = "MIT"
[workspace.dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
bincode = "1.3"
hex = "0.4"
blake3 = "1.5"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.perfopt]
inherits = "release"
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
[profile.compact]
inherits = "release"
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true