From 8cbef73276ae1ccee4fe8cc32eb438ac59afa8c6 Mon Sep 17 00:00:00 2001 From: James Liu Date: Mon, 27 Feb 2023 23:59:06 +0000 Subject: [PATCH] Update toml_edit to 0.19 (#7834) # Objective Noticed cargo-deny was failing on #6874 because of toml_edit. ## Solution Update toml_edit to 0.19. --- crates/bevy_macro_utils/Cargo.toml | 2 +- tools/build-example-pages/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_macro_utils/Cargo.toml b/crates/bevy_macro_utils/Cargo.toml index 161d2e34ee..866df666ee 100644 --- a/crates/bevy_macro_utils/Cargo.toml +++ b/crates/bevy_macro_utils/Cargo.toml @@ -9,6 +9,6 @@ license = "MIT OR Apache-2.0" keywords = ["bevy"] [dependencies] -toml_edit = "0.18" +toml_edit = "0.19" syn = "1.0" quote = "1.0" diff --git a/tools/build-example-pages/Cargo.toml b/tools/build-example-pages/Cargo.toml index 9129ac1c9e..d4af07b0a1 100644 --- a/tools/build-example-pages/Cargo.toml +++ b/tools/build-example-pages/Cargo.toml @@ -7,7 +7,7 @@ publish = false license = "MIT OR Apache-2.0" [dependencies] -toml_edit = "0.18" +toml_edit = "0.19" tera = "1.15" serde = { version = "1.0", features = [ "derive" ] } bitflags = "1.3"