diff --git a/crates/bevy_macro_utils/Cargo.toml b/crates/bevy_macro_utils/Cargo.toml index 88082b5a1ecec..90f5417168f9f 100644 --- a/crates/bevy_macro_utils/Cargo.toml +++ b/crates/bevy_macro_utils/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" keywords = ["bevy"] [dependencies] -toml_edit = "0.20" +toml_edit = { version = "0.21", default-features = false, features = ["parse"] } syn = "2.0" quote = "1.0" rustc-hash = "1.0" diff --git a/tools/example-showcase/Cargo.toml b/tools/example-showcase/Cargo.toml index 2374a78498aa9..b1b5c27b7feb0 100644 --- a/tools/example-showcase/Cargo.toml +++ b/tools/example-showcase/Cargo.toml @@ -10,5 +10,5 @@ license = "MIT OR Apache-2.0" xshell = "0.2" clap = { version = "4.0", features = ["derive"] } ron = "0.8" -toml_edit = "0.20" +toml_edit = { version = "0.21", default-features = false, features = ["parse"] } pbr = "1.1"