aboutsummaryrefslogtreecommitdiff
path: root/crates/rapier_testbed2d
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2024-08-02 21:38:56 +0700
committerGitHub <noreply@github.com>2024-08-02 16:38:56 +0200
commit617428e98855d072acd9d332b9782b4159dadfd8 (patch)
treee9b7bf859e5c43dc9c629f529112cb3eadf44b4b /crates/rapier_testbed2d
parent364b5b7c37c30af745ad77555d56b6c47ce7de8e (diff)
downloadrapier-617428e98855d072acd9d332b9782b4159dadfd8.tar.gz
rapier-617428e98855d072acd9d332b9782b4159dadfd8.tar.bz2
rapier-617428e98855d072acd9d332b9782b4159dadfd8.zip
Use workspace lints to control unexpected_cfgs. (#682)
By using `workspace.lints`, we can configure lints once for everything (and then inherit it into the various crates). The lint configuration for `unexpected_cfgs` works in 1.80+ and warns otherwise. Co-authored-by: Thierry Berger <contact@thierryberger.com>
Diffstat (limited to 'crates/rapier_testbed2d')
-rw-r--r--crates/rapier_testbed2d/Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/rapier_testbed2d/Cargo.toml b/crates/rapier_testbed2d/Cargo.toml
index 436cb26..6d25ae3 100644
--- a/crates/rapier_testbed2d/Cargo.toml
+++ b/crates/rapier_testbed2d/Cargo.toml
@@ -24,6 +24,9 @@ name = "rapier_testbed2d"
path = "../../src_testbed/lib.rs"
required-features = ["dim2"]
+[lints]
+workspace = true
+
[features]
default = ["dim2"]
dim2 = []