forked from NotAShelf/beer
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Id4cbc98d109251486a30d2955d084b856a6a6964
22 lines
416 B
TOML
22 lines
416 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = ["crates/beer", "crates/beer-protocols"]
|
|
|
|
[workspace.package]
|
|
version = "0.4.0"
|
|
edition = "2024"
|
|
rust-version = "1.95.0"
|
|
license = "EUPL-1.2"
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_op_in_unsafe_fn = "deny"
|
|
missing_debug_implementations = "warn"
|
|
|
|
[workspace.lints.clippy]
|
|
all = { level = "warn", priority = -1 }
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
strip = true
|