bevy/tools/build-templated-pages/Cargo.toml
François Mockers b3655a3601
fix deprecations from toml_edit (#12421)
# Objective

- `toml_edit` released a new patch that deprecates `Document`
- this warns when Bevy builds, and CI deny warns

## Solution

- fix deprecation warnings
2024-03-11 17:53:38 +00:00

20 lines
452 B
TOML

[package]
name = "build-templated-pages"
version = "0.14.0-dev"
edition = "2021"
description = "handle templated pages in Bevy repository"
publish = false
license = "MIT OR Apache-2.0"
[lints]
workspace = true
[dependencies]
toml_edit = { version = "0.22.7", default-features = false, features = [
"parse",
] }
tera = "1.15"
serde = { version = "1.0", features = ["derive"] }
bitflags = "2.3"
hashbrown = { version = "0.14", features = ["serde"] }