-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 719 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
[workspace]
resolver = "2"
members = [
"kernel",
"intent-bus",
"sart",
"wasm-runtime",
"svfs",
"glass-box",
"network",
"inference-engine",
"settings",
"primary-agent",
]
# Note: modules/* crates (display-module, input-module, storage-module,
# settings-module, hello-module) are NOT workspace members because they
# compile to wasm32-unknown-unknown (a different target than x86_64-unknown-none).
# They declare their own [workspace] and are built independently:
# cd modules/<name> && cargo build --release --target wasm32-unknown-unknown
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort" # kernels must not unwind
[profile.dev]
panic = "abort"