mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 12:43:34 +00:00
8f5345573c
# Objective - Fixes #14132 ## Solution - Remove the cfg docsrs
22 lines
535 B
TOML
22 lines
535 B
TOML
[package]
|
|
name = "build-templated-pages"
|
|
edition = "2021"
|
|
description = "Tool that checks and fixes undocumented features and examples"
|
|
publish = false
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[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"] }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["-Zunstable-options"]
|
|
all-features = true
|