"git@weirdboi.dev:microhacks/rust-libs.git" did not exist on "4aabeb10be627ee39c077975da6a6ee56ca46773"
Support Bevy 0.14
Showing
- Cargo.toml 4 additions, 3 deletionsCargo.toml
- README.md 11 additions, 9 deletionsREADME.md
- src/fqpath.rs 0 additions, 1 deletionsrc/fqpath.rs
- src/json_loader/components.rs 23 additions, 25 deletionssrc/json_loader/components.rs
- src/lib.rs 2 additions, 2 deletionssrc/lib.rs
- tests/mod.rs 2 additions, 2 deletionstests/mod.rs
[package] | [package] | ||
name = "micro_games_macros" | name = "micro_games_macros" | ||
version = "0.4.0" | version = "0.5.0" | ||
edition = "2021" | edition = "2021" | ||
authors = ["Louis Capitanchik <contact@louiscap.co>"] | authors = ["Louis Capitanchik <contact@louiscap.co>"] | ||
description = "Utility macros to make it easier to build complex systems with Bevy" | description = "Utility macros to make it easier to build complex systems with Bevy" | ||
... | @@ -25,13 +25,14 @@ test-case = "3.3.1" | ... | @@ -25,13 +25,14 @@ test-case = "3.3.1" |
serde = { version = "1.0", features = ["derive"] } | serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | serde_json = "1.0" | ||
anyhow = "1.0" | anyhow = "1.0" | ||
micro_bevy_world_utils = "0.4.0" | micro_bevy_world_utils = "0.5" | ||
[dev-dependencies.bevy] | [dev-dependencies.bevy] | ||
version = "0.13" | version = "0.14" | ||
default-features = false | default-features = false | ||
features = [ | features = [ | ||
"bevy_asset", | "bevy_asset", | ||
"bevy_sprite", | "bevy_sprite", | ||
"bevy_core_pipeline", | "bevy_core_pipeline", | ||
"serialize" | |||
] | ] |
Please register or sign in to comment