1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18[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