fix auto_register_static example

This commit is contained in:
eugineerd 2025-04-17 18:29:52 +00:00
parent 4d2a9c3150
commit ff78027fc7
2 changed files with 4 additions and 5 deletions

View File

@ -1,18 +1,17 @@
[package]
name = "auto_register_static"
version = "0.1.0"
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"]
[[bin]]
# Name of the binary must be the same as the name of the lib.
name = "auto_register_static"
[dependencies]
bevy = { path = "../../../" }
bevy = { path = "../../../", default-features = false, features = ["trace"] }
[lints]
workspace = true