bevy/examples/reflection/auto_register_static/Cargo.toml
2025-04-17 18:29:52 +00:00

18 lines
361 B
TOML

[package]
name = "auto_register_static"
version = "0.0.0"
edition = "2024"
publish = false
license = "MIT OR Apache-2.0"
[lib]
# Our app must be a lib for static auto registration to work.
crate-type = ["lib"]
name = "auto_register_static"
[dependencies]
bevy = { path = "../../../", default-features = false, features = ["trace"] }
[lints]
workspace = true