Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/examples/reflection/auto_register_static/Cargo.toml
9324 views
1
[package]
2
name = "auto_register_static"
3
version = "0.0.0"
4
edition = "2024"
5
publish = false
6
license = "MIT OR Apache-2.0"
7
8
[lib]
9
# Our app must be a lib for static auto registration to work.
10
crate-type = ["lib"]
11
name = "auto_register_static"
12
13
[dependencies]
14
bevy = { path = "../../../", default-features = false, features = ["trace"] }
15
16
[lints]
17
workspace = true
18
19