File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
tests-integration/simple-ecs-test Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ keywords = ["bevy"]
1212syn = " 2.0"
1313quote = " 1.0"
1414proc-macro2 = " 1.0"
15- cargo-manifest-proc-macros = " 0.3.3 "
15+ cargo-manifest-proc-macros = " 0.3.4 "
1616
1717[lints ]
1818workspace = true
Original file line number Diff line number Diff line change @@ -48,8 +48,7 @@ impl BevyManifest {
4848 /// Returns the path for the crate with the given name.
4949 pub fn get_path ( & self , name : & str ) -> syn:: Path {
5050 self . maybe_get_path ( name)
51- //.expect("Failed to get path for crate")
52- . unwrap_or_else ( |_err| Self :: parse_str ( name) )
51+ . expect ( "Failed to get path for crate" )
5352 }
5453
5554 /// Attempt to parse the provided [path](str) as a [syntax tree node](syn::parse::Parse)
Original file line number Diff line number Diff line change 22name = " simple-ecs-test"
33edition = " 2021"
44
5+ # We depend on bevy in both normal and dev dependencies to verify that the proc macros still work.
6+
57[dependencies ]
68bevy = { path = " ../../" }
9+
10+ [dev-dependencies ]
11+ bevy = { path = " ../../" }
You can’t perform that action at this time.
0 commit comments