diff options
| author | Thierry Berger <contact@thierryberger.com> | 2024-09-03 21:18:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-03 21:18:44 +0200 |
| commit | 58785ce257367f9e016738c2a87413b0590cc67f (patch) | |
| tree | 696229aa9e97d7e1d938b82f140046dc4af8b557 /crates/rapier2d | |
| parent | 983f8a39012431b5c678494c5d77306be16063b0 (diff) | |
| download | rapier-58785ce257367f9e016738c2a87413b0590cc67f.tar.gz rapier-58785ce257367f9e016738c2a87413b0590cc67f.tar.bz2 rapier-58785ce257367f9e016738c2a87413b0590cc67f.zip | |
chore: workspace lints now part of each crate. (#728)
Diffstat (limited to 'crates/rapier2d')
| -rw-r--r-- | crates/rapier2d/Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/rapier2d/Cargo.toml b/crates/rapier2d/Cargo.toml index b910304..e2afba1 100644 --- a/crates/rapier2d/Cargo.toml +++ b/crates/rapier2d/Cargo.toml @@ -22,7 +22,9 @@ edition = "2021" maintenance = { status = "actively-developed" } [lints] -workspace = true +rust.unexpected_cfgs = { level = "warn", check-cfg = [ + 'cfg(feature, values("dim3", "f64"))', +] } [features] default = ["dim2", "f32"] |
