tcpasters/Cargo.toml

30 lines
643 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"
[patch.crates-io]
# jemallocator = { git = "https://github.com/tikv/jemallocator.git", branch = "master" }
nude = { git = "https://betaco.de/zeno/nude-rs.git", branch = "master" }