create super strict rust config
This commit is contained in:
commit
d56ebb7e16
36 changed files with 2969 additions and 0 deletions
21
Cargo.toml
Normal file
21
Cargo.toml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
[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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue