16 lines
345 B
TOML
16 lines
345 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"lib/mammoth", "lib/yellowstone", "lib/yunq", "lib/yunq-derive", "usr/testbed",
|
|
]
|
|
resolver = "2"
|
|
|
|
# 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
|
|
|