15 lines
280 B
TOML
15 lines
280 B
TOML
|
[workspace]
|
||
|
|
||
|
members = [
|
||
|
"lib/mammoth", "usr/testbed",
|
||
|
]
|
||
|
|
||
|
# the profile used for `cargo build`
|
||
|
[profile.dev]
|
||
|
panic = "abort" # disable stack unwinding on panic
|
||
|
|
||
|
# the profile used for `cargo build --release`
|
||
|
[profile.release]
|
||
|
panic = "abort" # disable stack unwinding on panic
|
||
|
|