Skip to content

Commit

Permalink
upgrade all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-1 committed Nov 18, 2023
1 parent 9633508 commit 89f5053
Show file tree
Hide file tree
Showing 6 changed files with 79 additions and 65 deletions.
122 changes: 68 additions & 54 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions azalea-auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ reqwest = { version = "0.11.22", default-features = false, features = [
"rustls-tls",
] }
rsa = "0.9.3"
serde = { version = "1.0.190", features = ["derive"] }
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
thiserror = "1.0.50"
tokio = { version = "1.33.0", features = ["fs"] }
tokio = { version = "1.34.0", features = ["fs"] }
uuid = { version = "1.5.0", features = ["serde"] }

[dev-dependencies]
env_logger = "0.10.0"
tokio = { version = "1.33.0", features = ["full"] }
env_logger = "0.10.1"
tokio = { version = "1.34.0", features = ["full"] }
4 changes: 2 additions & 2 deletions azalea-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ once_cell = "1.18.0"
parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
regex = "1.10.2"
thiserror = "^1.0.50"
tokio = { version = "^1.33.0", features = ["sync"] }
tokio = { version = "^1.34.0", features = ["sync"] }
uuid = "^1.5.0"
azalea-entity = { version = "0.8.0", path = "../azalea-entity" }
serde_json = "1.0.108"
serde = "1.0.190"
serde = "1.0.192"

[features]
default = ["log"]
Expand Down
2 changes: 1 addition & 1 deletion azalea-client/src/packet_handling/game.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ use crate::{
/// entity,
/// packet,
/// } in events.read() {
/// match packet {
/// match packet.as_ref() {
/// ClientboundGamePacket::LevelParticles(p) => {
/// // ...
/// }
Expand Down
6 changes: 3 additions & 3 deletions azalea-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version = "0.8.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-compression = { version = "^0.4.4", features = [
async-compression = { version = "^0.4.5", features = [
"tokio",
"zlib",
], optional = true }
Expand Down Expand Up @@ -44,7 +44,7 @@ tracing = "0.1.40"
serde = { version = "^1.0", features = ["serde_derive"] }
serde_json = "^1.0.108"
thiserror = "1.0.50"
tokio = { version = "^1.33.0", features = ["io-util", "net", "macros"] }
tokio = { version = "^1.34.0", features = ["io-util", "net", "macros"] }
tokio-util = { version = "0.7.10", features = ["codec"] }
trust-dns-resolver = { version = "^0.23.2", default-features = false, features = [
"tokio-runtime",
Expand All @@ -60,5 +60,5 @@ strict_registry = ["packets"]
[dev-dependencies]
anyhow = "^1.0.75"
tracing = "^0.1.40"
tracing-subscriber = "^0.3.17"
tracing-subscriber = "^0.3.18"
once_cell = "1.18.0"
2 changes: 1 addition & 1 deletion azalea/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ num-traits = "0.2.17"
parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
priority-queue = "1.3.2"
thiserror = "^1.0.50"
tokio = "^1.33.0"
tokio = "^1.34.0"
uuid = "1.5.0"
bevy_log = "0.12.0"
azalea-entity = { version = "0.8.0", path = "../azalea-entity" }
Expand Down

0 comments on commit 89f5053

Please sign in to comment.