cleanups
This commit is contained in:
parent
6d466c65a4
commit
579869f2f0
21 changed files with 168 additions and 2771 deletions
26
Cargo.toml
26
Cargo.toml
|
|
@ -1,19 +1,21 @@
|
|||
[workspace]
|
||||
members = ["crates/cursor-mover-app"
|
||||
, "crates/cursor-move-webapp"]
|
||||
members = ["crates/cursor-move-webapp"]
|
||||
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"
|
||||
all = {level = "warn", priority = -1}
|
||||
correctness = {level = "deny", priority = -1}
|
||||
suspicious = {level = "warn", priority = -1}
|
||||
complexity = {level = "warn", priority = -1}
|
||||
perf = {level = "warn", priority = -1}
|
||||
style = {level = "warn", priority = -1}
|
||||
pedantic = {level = "warn", priority = -1}
|
||||
restriction = {level = "allow", priority = -1}
|
||||
cargo = {level = "warn", priority = -1}
|
||||
nursery = {level = "warn", priority = -1}
|
||||
|
||||
# cargo deny takes care of that
|
||||
multiple-crate-versions = "allow"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue