Skip to content

Commit 9f8db0d

Browse files
authored
Bump toml_edit in build-template-pages tool (#11342)
# Objective - The [`build-templated-pages`](https://github.com/bevyengine/bevy/tree/4778fbeb65d840eb39bda017fd428ebfc17a1153/tools/build-templated-pages) tool is used to render the Markdown templates in the [docs-template](https://github.com/bevyengine/bevy/tree/4778fbeb65d840eb39bda017fd428ebfc17a1153/docs-template) folder. - It depends on out outdated version of `toml_edit`. ## Solution - Bump `toml_edit` to 0.21, disabling all features except `parse`.
1 parent eb9db21 commit 9f8db0d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/bevy_macro_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
99
keywords = ["bevy"]
1010

1111
[dependencies]
12-
toml_edit = "0.20"
12+
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }
1313
syn = "2.0"
1414
quote = "1.0"
1515
rustc-hash = "1.0"

tools/build-templated-pages/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77
license = "MIT OR Apache-2.0"
88

99
[dependencies]
10-
toml_edit = "0.20"
10+
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }
1111
tera = "1.15"
1212
serde = { version = "1.0", features = ["derive"] }
1313
bitflags = "2.3"

tools/example-showcase/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ license = "MIT OR Apache-2.0"
1010
xshell = "0.2"
1111
clap = { version = "4.0", features = ["derive"] }
1212
ron = "0.8"
13-
toml_edit = "0.20"
13+
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }
1414
pbr = "1.1"

0 commit comments

Comments
 (0)