From 678a725c66fed0878cd71f8025cd0ddabdd20530 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Fri, 12 Jul 2024 22:05:57 +0700 Subject: 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`. --- crates/rapier3d-urdf/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/rapier3d-urdf') 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" -- cgit