28 lines
539 B
TOML
28 lines
539 B
TOML
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# Copyright © 2022 Thorsten Schubert <tschubert@bafh.org>
|
|
cargo-features = ["profile-rustflags"]
|
|
|
|
[workspace]
|
|
members = ["tcpaste"]
|
|
resolver = "2"
|
|
|
|
[profile.dev]
|
|
incremental = true
|
|
|
|
[profile.release]
|
|
overflow-checks = false
|
|
strip = "symbols"
|
|
lto = "thin"
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
opt-level = 2
|
|
rustflags = ["-C", "target-cpu=native"]
|
|
|
|
[profile.dbg-release]
|
|
inherits = "release"
|
|
debug = true
|
|
strip = "none"
|
|
lto = "thin"
|
|
panic = "unwind"
|
|
codegen-units = 16
|
|
split-debuginfo = "unpacked"
|