26 lines
462 B
TOML
26 lines
462 B
TOML
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# Copyright © 2022 Thorsten Schubert <tschubert@bafh.org>
|
|
|
|
[workspace]
|
|
members = ["tcpaste"]
|
|
resolver = "2"
|
|
|
|
[profile.dev]
|
|
incremental = true
|
|
|
|
[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"
|