Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/tools/build-templated-pages/Cargo.toml
6592 views
1
[package]
2
name = "build-templated-pages"
3
edition = "2024"
4
description = "Tool that checks and fixes undocumented features and examples"
5
publish = false
6
license = "MIT OR Apache-2.0"
7
8
[dependencies]
9
toml_edit = { version = "0.23.2", default-features = false, features = [
10
"parse",
11
] }
12
tera = "1.15"
13
serde = { version = "1.0", features = ["derive"] }
14
bitflags = "2.3"
15
hashbrown = { version = "0.16.0", features = ["serde"] }
16
17
[lints]
18
workspace = true
19
20