blob: 895cc41ca9a8ab9c1611a6c0ded77953d7f8fc91 [file] [log] [blame]
[workspace]
members = [
"hermit-abi",
"hermit-sys",
"benches/netbench",
"benches/micro",
"examples/hello_world",
"examples/httpd",
"examples/demo",
]
exclude = ["target", "loader", "libhermit-rs"]
[profile.release]
opt-level = 2
debug = false
rpath = false
lto = false
debug-assertions = false
[profile.dev]
opt-level = 1 # controls the `--opt-level` the compiler builds with
debug = true # controls whether the compiler passes `-C debuginfo`
# a value of `true` is equivalent to `2`
rpath = false # controls whether the compiler passes `-C rpath`
lto = false # controls `-C lto` for binaries and staticlibs
debug-assertions = true # controls whether debug assertions are enabled