aboutsummaryrefslogtreecommitdiff
path: root/crates/rapier3d-urdf
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2024-07-12 22:05:57 +0700
committerGitHub <noreply@github.com>2024-07-12 17:05:57 +0200
commit678a725c66fed0878cd71f8025cd0ddabdd20530 (patch)
treebd6c510c288c73e90a7ba97bbf0901d9cee08945 /crates/rapier3d-urdf
parent56f0eecd2732ed6871684cb7dd8cb8c32a1e701d (diff)
downloadrapier-678a725c66fed0878cd71f8025cd0ddabdd20530.tar.gz
rapier-678a725c66fed0878cd71f8025cd0ddabdd20530.tar.bz2
rapier-678a725c66fed0878cd71f8025cd0ddabdd20530.zip
Prefer explicit features for optional deps. (#681)
Implicit features are slated to be removed in a future version of Rust (2024 edition). Fixing this exposed 2 instances where the wrong feature was being checked for `serde` vs `serde-serialize`.
Diffstat (limited to 'crates/rapier3d-urdf')
-rw-r--r--crates/rapier3d-urdf/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rapier3d-urdf/Cargo.toml b/crates/rapier3d-urdf/Cargo.toml
index de5b4d6..0e31220 100644
--- a/crates/rapier3d-urdf/Cargo.toml
+++ b/crates/rapier3d-urdf/Cargo.toml
@@ -13,7 +13,7 @@ license = "Apache-2.0"
edition = "2021"
[features]
-stl = ["rapier3d-stl"]
+stl = ["dep:rapier3d-stl"]
[dependencies]
log = "0.4"