22 lines
363 B
TOML
22 lines
363 B
TOML
|
|
[workspace]
|
||
|
|
members = [
|
||
|
|
"crates/the-app",
|
||
|
|
"crates/the-lib",
|
||
|
|
]
|
||
|
|
resolver = "2"
|
||
|
|
|
||
|
|
[workspace.dependencies]
|
||
|
|
the-lib = {path="crates/the-lib", version="0.0.0"}
|
||
|
|
|
||
|
|
[workspace.lints.clippy]
|
||
|
|
all = "warn"
|
||
|
|
correctness = "deny"
|
||
|
|
suspicious = "warn"
|
||
|
|
complexity = "warn"
|
||
|
|
perf = "warn"
|
||
|
|
style = "warn"
|
||
|
|
pedantic = "warn"
|
||
|
|
restriction = "allow"
|
||
|
|
cargo = "warn"
|
||
|
|
nursery = "warn"
|