Files
kumomta/Cargo.toml
T
Wez Furlong 86bdb39ea0 include line table debug info in release builds
This gives a higher quality panic stack trace at the cost of inflating
the executable size from ~50MB -> ~500MB.

Full debug info is a possibility, but the executable size is ~800MB,
which is high, but not completely crazy. I don't know if we'll really
need that, so going with line debug for now.
2023-03-09 18:50:24 -07:00

19 lines
338 B
TOML

[workspace]
members = [
"crates/bounce-classify",
"crates/domain-map",
"crates/integration-tests",
"crates/kumod",
"crates/rfc5321",
"crates/spool",
"crates/timeq",
"crates/throttle",
"crates/traffic-gen",
]
resolver = "2"
[profile.release]
opt-level = 3
debug = 1 # include line tables for more meaningful backtraces