tcpasters/Cargo.toml
Thorsten Schubert 79223681fa
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
More efficient hashing
2022-04-20 13:12:24 +00:00

25 lines
No EOL
447 B
TOML

# SPDX-License-Identifier: AGPL-3.0-or-later
# Copyright © 2022 Thorsten Schubert <tschubert@bafh.org>
[workspace]
members = ["tcpaste"]
[profile.dev]
incremental = false
[profile.release]
overflow-checks = false
strip = "symbols"
lto = "fat"
panic = "abort"
codegen-units = 1
#opt-level = "z"
[profile.dbg-release]
inherits = "release"
debug = true
strip = "none"
lto = "thin"
panic = "unwind"
codegen-units = 16
split-debuginfo = "unpacked"