Skip to content

Commit

Permalink
Bump toml_edit in build-template-pages tool (bevyengine#11342)
Browse files Browse the repository at this point in the history
# 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`.
  • Loading branch information
BD103 committed Jan 16, 2024
1 parent eb9db21 commit 9f8db0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/bevy_macro_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tools/build-templated-pages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
license = "MIT OR Apache-2.0"

[dependencies]
toml_edit = "0.20"
toml_edit = { version = "0.21", default-features = false, features = ["parse"] }
tera = "1.15"
serde = { version = "1.0", features = ["derive"] }
bitflags = "2.3"
2 changes: 1 addition & 1 deletion tools/example-showcase/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 9f8db0d

Please sign in to comment.