# Objective - `toml_edit` released a new patch that deprecates `Document` - this warns when Bevy builds, and CI deny warns ## Solution - fix deprecation warnings
20 lines
452 B
TOML
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"] }
|