Skip to content

Commit

Permalink
also upgrade deps everywhere else lol
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-1 committed Oct 3, 2023
1 parent 86d9607 commit 0ef1525
Show file tree
Hide file tree
Showing 18 changed files with 161 additions and 123 deletions.
196 changes: 117 additions & 79 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions azalea-auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ version = "0.8.0"
[dependencies]
azalea-buf = { path = "../azalea-buf", version = "0.8.0" }
azalea-crypto = { path = "../azalea-crypto", version = "0.8.0" }
base64 = "0.21.3"
chrono = { version = "0.4.30", default-features = false, features = ["serde"] }
base64 = "0.21.4"
chrono = { version = "0.4.31", default-features = false, features = ["serde"] }
log = "0.4.20"
num-bigint = "0.4.4"
once_cell = "1.18.0"
reqwest = { version = "0.11.20", default-features = false, features = [
reqwest = { version = "0.11.21", default-features = false, features = [
"json",
"rustls-tls",
] }
rsa = "0.9.2"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.105"
thiserror = "1.0.48"
serde_json = "1.0.107"
thiserror = "1.0.49"
tokio = { version = "1.32.0", features = ["fs"] }
uuid = { version = "1.4.1", features = ["serde"] }

Expand Down
4 changes: 2 additions & 2 deletions azalea-block/azalea-block-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
proc-macro2 = "1.0.66"
proc-macro2 = "1.0.67"
quote = "1.0.33"
syn = "2.0.31"
syn = "2.0.37"
2 changes: 1 addition & 1 deletion azalea-buf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ azalea-buf-macros = { path = "./azalea-buf-macros", version = "0.8.0" }
byteorder = "^1.4.3"
log = "0.4.20"
serde_json = { version = "^1.0", optional = true }
thiserror = "1.0.48"
thiserror = "1.0.49"
uuid = "^1.4.1"

[features]
Expand Down
4 changes: 2 additions & 2 deletions azalea-buf/azalea-buf-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
proc-macro2 = "^1.0.66"
proc-macro2 = "^1.0.67"
quote = "^1.0.33"
syn = { version = "^2.0.31", features = ["extra-traits"] }
syn = { version = "^2.0.37", features = ["extra-traits"] }
2 changes: 1 addition & 1 deletion azalea-chat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ azalea-language = { path = "../azalea-language", version = "0.8.0" }
log = "0.4.20"
once_cell = "1.18.0"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0.105"
serde_json = "^1.0.107"
20 changes: 10 additions & 10 deletions azalea-client/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]
reqwest = { version = "0.11.20", default-features = false }
reqwest = { version = "0.11.21", default-features = false }
anyhow = "1.0.75"
async-trait = "0.1.73"
azalea-auth = { path = "../azalea-auth", version = "0.8.0" }
Expand All @@ -23,25 +23,25 @@ azalea-buf = { path = "../azalea-buf", version = "0.8.0" }
azalea-protocol = { path = "../azalea-protocol", version = "0.8.0" }
azalea-registry = { path = "../azalea-registry", version = "0.8.0" }
azalea-world = { path = "../azalea-world", version = "0.8.0" }
bevy_app = "0.11.2"
bevy_ecs = "0.11.2"
bevy_log = { version = "0.11.2", optional = true }
bevy_tasks = "0.11.2"
bevy_time = "0.11.2"
bevy_app = "0.11.3"
bevy_ecs = "0.11.3"
bevy_log = { version = "0.11.3", optional = true }
bevy_tasks = "0.11.3"
bevy_time = "0.11.3"
azalea-inventory = { path = "../azalea-inventory", version = "0.8.0" }
derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
futures = "0.3.28"
log = "0.4.20"
nohash-hasher = "0.2.0"
once_cell = "1.18.0"
parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
regex = "1.9.5"
thiserror = "^1.0.48"
regex = "1.9.6"
thiserror = "^1.0.49"
tokio = { version = "^1.32.0", features = ["sync"] }
uuid = "^1.4.1"
azalea-entity = { version = "0.8.0", path = "../azalea-entity" }
serde_json = "1.0.104"
serde = "1.0.183"
serde_json = "1.0.107"
serde = "1.0.188"

[features]
default = ["log"]
Expand Down
2 changes: 1 addition & 1 deletion azalea-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ azalea-buf = { path = "../azalea-buf", version = "0.8.0" }
azalea-inventory = { version = "0.8.0", path = "../azalea-inventory" }
azalea-nbt = { path = "../azalea-nbt", version = "0.8.0" }
azalea-registry = { path = "../azalea-registry", version = "0.8.0" }
bevy_ecs = { version = "0.11.2", default-features = false, optional = true }
bevy_ecs = { version = "0.11.3", default-features = false, optional = true }
nohash-hasher = "0.2.0"
num-traits = "0.2.16"
serde = { version = "^1.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion azalea-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rand = { version = "^0.8.5", features = ["getrandom"] }
rsa = { version = "0.9.2", features = ["sha2"] }
rsa_public_encrypt_pkcs1 = "0.4.0"
sha-1 = "^0.10.1"
sha2 = "0.10.7"
sha2 = "0.10.8"
uuid = "^1.4.1"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions azalea-entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ azalea-inventory = { version = "0.8.0", path = "../azalea-inventory" }
azalea-nbt = { version = "0.8.0", path = "../azalea-nbt" }
azalea-registry = { version = "0.8.0", path = "../azalea-registry" }
azalea-world = { version = "0.8.0", path = "../azalea-world" }
bevy_app = "0.11.2"
bevy_ecs = "0.11.2"
bevy_app = "0.11.3"
bevy_ecs = "0.11.3"
derive_more = "0.99.17"
enum-as-inner = "0.6.0"
log = "0.4.20"
nohash-hasher = "0.2.0"
parking_lot = "0.12.1"
thiserror = "1.0.48"
thiserror = "1.0.49"
uuid = "1.4.1"
4 changes: 2 additions & 2 deletions azalea-inventory/azalea-inventory-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
proc-macro2 = "1.0.66"
proc-macro2 = "1.0.67"
quote = "1.0.33"
syn = "2.0.31"
syn = "2.0.37"
2 changes: 1 addition & 1 deletion azalea-language/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "0.8.0"
[dependencies]
once_cell = "1.18.0"
serde = "^1.0"
serde_json = "^1.0.105"
serde_json = "^1.0.107"
# tokio = {version = "^1.21.2", features = ["fs"]}
2 changes: 1 addition & 1 deletion azalea-nbt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ enum-as-inner = "0.6.0"
flate2 = "^1.0.27"
log = "0.4.20"
serde = { version = "^1.0", features = ["derive"], optional = true }
thiserror = "1.0.48"
thiserror = "1.0.49"

[dev-dependencies]
criterion = { version = "^0.5.1", features = ["html_reports"] }
Expand Down
6 changes: 3 additions & 3 deletions azalea-physics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ azalea-entity = { version = "0.8.0", path = "../azalea-entity" }
azalea-inventory = { version = "0.8.0", path = "../azalea-inventory" }
azalea-registry = { path = "../azalea-registry", version = "0.8.0" }
azalea-world = { path = "../azalea-world", version = "0.8.0" }
bevy_app = "0.11.2"
bevy_ecs = "0.11.2"
bevy_app = "0.11.3"
bevy_ecs = "0.11.3"
log = "0.4.20"
once_cell = "1.18.0"
parking_lot = "^0.12.1"

[dev-dependencies]
bevy_time = "0.11.2"
bevy_time = "0.11.3"
uuid = "^1.4.1"
10 changes: 5 additions & 5 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.2", features = [
async-compression = { version = "^0.4.3", features = [
"tokio",
"zlib",
], optional = true }
Expand All @@ -33,7 +33,7 @@ azalea-nbt = { path = "../azalea-nbt", version = "^0.8.0", features = [
azalea-protocol-macros = { path = "./azalea-protocol-macros", version = "0.8.0" }
azalea-registry = { path = "../azalea-registry", version = "0.8.0" }
azalea-world = { path = "../azalea-world", version = "0.8.0" }
bevy_ecs = { version = "0.11.2", default-features = false }
bevy_ecs = { version = "0.11.3", default-features = false }
byteorder = "^1.4.3"
bytes = "^1.5.0"
flate2 = "1.0.27"
Expand All @@ -42,10 +42,10 @@ futures-lite = "1.13.0"
futures-util = "0.3.28"
log = "0.4.20"
serde = { version = "^1.0", features = ["serde_derive"] }
serde_json = "^1.0.105"
thiserror = "1.0.48"
serde_json = "^1.0.107"
thiserror = "1.0.49"
tokio = { version = "^1.32.0", features = ["io-util", "net", "macros"] }
tokio-util = { version = "0.7.8", features = ["codec"] }
tokio-util = { version = "0.7.9", features = ["codec"] }
trust-dns-resolver = { version = "^0.23.0", default-features = false, features = [
"tokio-runtime",
] }
Expand Down
4 changes: 2 additions & 2 deletions azalea-protocol/azalea-protocol-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
proc-macro2 = "^1.0.66"
proc-macro2 = "^1.0.67"
quote = "^1.0.33"
syn = "^2.0.31"
syn = "^2.0.37"
4 changes: 2 additions & 2 deletions azalea-registry/azalea-registry-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
proc-macro2 = "1.0.66"
proc-macro2 = "1.0.67"
quote = "1.0.33"
syn = "2.0.31"
syn = "2.0.37"

[features]
serde = []
4 changes: 2 additions & 2 deletions azalea-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ azalea-core = { path = "../azalea-core", version = "^0.8.0", features = [
azalea-inventory = { version = "0.8.0", path = "../azalea-inventory" }
azalea-nbt = { path = "../azalea-nbt", version = "0.8.0" }
azalea-registry = { path = "../azalea-registry", version = "0.8.0" }
bevy_ecs = "0.11.2"
bevy_ecs = "0.11.3"
derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
enum-as-inner = "0.6.0"
log = "0.4.20"
nohash-hasher = "0.2.0"
once_cell = "1.18.0"
parking_lot = "^0.12.1"
thiserror = "1.0.48"
thiserror = "1.0.49"
uuid = "1.4.1"

[dev-dependencies]
Expand Down

0 comments on commit 0ef1525

Please sign in to comment.