19 lines
373 B
TOML
19 lines
373 B
TOML
[workspace]
|
|
members = ["crates/cursor-mover-app"
|
|
, "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"
|