Bump toml_edit in build-template-pages tool (#11342)

# Objective

- The
[`build-templated-pages`](4778fbeb65/tools/build-templated-pages)
tool is used to render the Markdown templates in the
[docs-template](4778fbeb65/docs-template)
folder.
- It depends on out outdated version of `toml_edit`.

## Solution

- Bump `toml_edit` to 0.21, disabling all features except `parse`.
This commit is contained in:
BD103 2024-01-16 00:23:18 -05:00 committed by GitHub
parent eb9db21113
commit 9f8db0de0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -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"

View file

@ -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"

View file

@ -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"