diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2023-03-07 14:14:36 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-07 14:14:36 -0600 |
| commit | 719379a8a76ab0685f2bd14bebe2f0cd1e97f06b (patch) | |
| tree | ce5d6c62bc36fb1d1ec31083bc8e81a0109c12df /azalea-client/Cargo.toml | |
| parent | bf4ff517890cad3ff4e36b4b78959504192e5374 (diff) | |
| download | azalea-drasl-719379a8a76ab0685f2bd14bebe2f0cd1e97f06b.tar.xz | |
Bevy 0.10 (#79)
* replace 0.9.1 with 0.10.0
* start migrating to bevy .10
* well it compiles
* doesn't immediately panic
* remove unused imports
* fmt
* delete azalea-ecs
* make RelativeEntityUpdate an EntityCommand
* fix a doc test
* explain what FixedUpdate does
Diffstat (limited to 'azalea-client/Cargo.toml')
| -rw-r--r-- | azalea-client/Cargo.toml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml index 6bb31069..f25aa290 100644 --- a/azalea-client/Cargo.toml +++ b/azalea-client/Cargo.toml @@ -16,14 +16,15 @@ azalea-block = { path = "../azalea-block", version = "0.6.0" } azalea-chat = { path = "../azalea-chat", version = "0.6.0" } azalea-core = { path = "../azalea-core", version = "0.6.0" } azalea-crypto = { path = "../azalea-crypto", version = "0.6.0" } -azalea-ecs = { path = "../azalea-ecs", version = "0.6.0" } azalea-physics = { path = "../azalea-physics", version = "0.6.0" } azalea-protocol = { path = "../azalea-protocol", version = "0.6.0" } azalea-registry = { path = "../azalea-registry", version = "0.6.0" } azalea-world = { path = "../azalea-world", version = "0.6.0" } -bevy_log = "0.9.1" -bevy_tasks = "0.9.1" -bevy_time = "0.9.1" +bevy_app = "0.10.0" +bevy_ecs = "0.10.0" +bevy_log = "0.10.0" +bevy_tasks = "0.10.0" +bevy_time = "0.10.0" derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] } futures = "0.3.25" log = "0.4.17" |
