2022-06-25 20:23:24 +00:00
|
|
|
[package]
|
2023-02-28 14:24:47 +00:00
|
|
|
name = "build-templated-pages"
|
2024-02-21 20:58:59 +00:00
|
|
|
version = "0.14.0-dev"
|
2022-06-25 20:23:24 +00:00
|
|
|
edition = "2021"
|
2023-02-28 14:24:47 +00:00
|
|
|
description = "handle templated pages in Bevy repository"
|
2022-06-25 20:23:24 +00:00
|
|
|
publish = false
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
2024-02-19 17:09:47 +00:00
|
|
|
|
2022-06-25 20:23:24 +00:00
|
|
|
[dependencies]
|
2024-03-11 17:53:38 +00:00
|
|
|
toml_edit = { version = "0.22.7", default-features = false, features = [
|
|
|
|
"parse",
|
|
|
|
] }
|
2022-06-25 20:23:24 +00:00
|
|
|
tera = "1.15"
|
2023-11-21 01:04:14 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-06-01 08:41:42 +00:00
|
|
|
bitflags = "2.3"
|
2024-02-26 16:27:40 +00:00
|
|
|
hashbrown = { version = "0.14", features = ["serde"] }
|
2024-03-23 02:22:52 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
|
|
|
|
all-features = true
|