2022-06-25 20:23:24 +00:00
|
|
|
[package]
|
2023-02-28 14:24:47 +00:00
|
|
|
name = "build-templated-pages"
|
2022-06-25 20:23:24 +00:00
|
|
|
edition = "2021"
|
2024-04-26 07:55:03 -04:00
|
|
|
description = "Tool that checks and fixes undocumented features and examples"
|
2022-06-25 20:23:24 +00:00
|
|
|
publish = false
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-11 18:53:38 +01: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-20 19:04:14 -06:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-06-01 10:41:42 +02:00
|
|
|
bitflags = "2.3"
|
2024-02-26 17:27:40 +01:00
|
|
|
hashbrown = { version = "0.14", features = ["serde"] }
|
2024-03-22 20:22:52 -06:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|