mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-10 20:42:14 +00:00
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.
19 lines
338 B
TOML
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
|
|
|