mirror of
https://github.com/Blah-IM/blahrs.git
synced 2025-09-13 05:55:22 +00:00
27 lines
464 B
TOML
27 lines
464 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = [
|
|
"blah-types",
|
|
"blahctl",
|
|
"blahd",
|
|
]
|
|
default-members = ["blahd"]
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
# NB: Sync MSRV with CI!
|
|
rust-version = "1.88" # let_chains
|
|
|
|
[workspace.lints.clippy]
|
|
allow_attributes_without_reason = "warn"
|
|
dbg_macro = "warn"
|
|
print_stderr = "warn"
|
|
print_stdout = "warn"
|
|
todo = "warn"
|
|
unwrap_used = "warn"
|
|
|
|
[profile.dev]
|
|
debug = "line-tables-only"
|
|
|
|
[profile.bench]
|
|
debug = "line-tables-only"
|