This commit is contained in:
Mona Mayrhofer 2026-03-03 18:08:02 +01:00
parent 6d466c65a4
commit 579869f2f0
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 374AB152BDEBA1AE
21 changed files with 168 additions and 2771 deletions

View file

@ -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"