mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
f77618eccb
# Objective - Some workspace members do not inherit the global lints. ## Solution - Add a `[lints]` entry for all files returned by `rg --files-without-match -F "[lints]" **/Cargo.toml`, except the compile failure tests since these aren't part of the workspace. - Add some docstrings where needed. --------- Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
16 lines
386 B
TOML
16 lines
386 B
TOML
[package]
|
|
name = "build-templated-pages"
|
|
version = "0.13.0"
|
|
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", default-features = false, features = ["parse"] }
|
|
tera = "1.15"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
bitflags = "2.3"
|