diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2023-07-09 19:11:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-09 19:11:29 -0500 |
| commit | d1afd02aa84e7b4450c1607277f078eb2a0f1bf3 (patch) | |
| tree | efea9bb7ef7f2064f7c963fd88f394fecec6231b /azalea-client/Cargo.toml | |
| parent | ea8a8fccb6eb39c97f6cb69e11db5f7d0886172e (diff) | |
| download | azalea-drasl-d1afd02aa84e7b4450c1607277f078eb2a0f1bf3.tar.xz | |
Update to Bevy 0.11 (#94)
* update to bevy 0.11
* clippy
---------
Co-authored-by: mat <git@matdoes.dev>
Diffstat (limited to 'azalea-client/Cargo.toml')
| -rw-r--r-- | azalea-client/Cargo.toml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml index dc4ff2e0..fb96fccb 100644 --- a/azalea-client/Cargo.toml +++ b/azalea-client/Cargo.toml @@ -9,9 +9,9 @@ version = "0.7.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -reqwest = { version = "0.11.12", default-features = false } -anyhow = "1.0.59" -async-trait = "0.1.58" +reqwest = { version = "0.11.18", default-features = false } +anyhow = "1.0.71" +async-trait = "0.1.71" azalea-auth = { path = "../azalea-auth", version = "0.7.0" } azalea-block = { path = "../azalea-block", version = "0.7.0" } azalea-nbt = { path = "../azalea-nbt", version = "0.7.0" } @@ -22,22 +22,22 @@ azalea-physics = { path = "../azalea-physics", version = "0.7.0" } azalea-protocol = { path = "../azalea-protocol", version = "0.7.0" } azalea-registry = { path = "../azalea-registry", version = "0.7.0" } azalea-world = { path = "../azalea-world", version = "0.7.0" } -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" +bevy_app = "0.11.0" +bevy_ecs = "0.11.0" +bevy_log = "0.11.0" +bevy_tasks = "0.11.0" +bevy_time = "0.11.0" azalea-inventory = { path = "../azalea-inventory", version = "0.7.0" } derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] } -futures = "0.3.25" -log = "0.4.17" +futures = "0.3.28" +log = "0.4.19" nohash-hasher = "0.2.0" -once_cell = "1.16.0" +once_cell = "1.18.0" parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] } -regex = "1.7.0" -thiserror = "^1.0.34" -tokio = { version = "^1.24.2", features = ["sync"] } -uuid = "^1.1.2" +regex = "1.9.1" +thiserror = "^1.0.43" +tokio = { version = "^1.29.1", features = ["sync"] } +uuid = "^1.4.0" [features] default = ["log"] |
