aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-12-05 11:06:24 -0600
committermat <git@matdoes.dev>2023-12-05 11:06:24 -0600
commitab5f6d598d4dfac6d30303600f550e9265455ca5 (patch)
tree4bf0328595eee218f0d43b2cdbabc68103d08ae7
parent53d7c1aa9712193a7f18dff813a02b2ddf7a0566 (diff)
downloadazalea-drasl-ab5f6d598d4dfac6d30303600f550e9265455ca5.tar.xz
upgrade deps
-rw-r--r--Cargo.lock11
-rw-r--r--azalea-auth/Cargo.toml6
-rw-r--r--azalea-block/azalea-block-macros/Cargo.toml2
-rw-r--r--azalea-buf/Cargo.toml2
-rw-r--r--azalea-buf/azalea-buf-macros/Cargo.toml2
-rw-r--r--azalea-client/Cargo.toml4
-rw-r--r--azalea-core/Cargo.toml2
-rw-r--r--azalea-crypto/Cargo.toml4
-rw-r--r--azalea-entity/Cargo.toml2
-rw-r--r--azalea-inventory/azalea-inventory-macros/Cargo.toml2
-rw-r--r--azalea-physics/Cargo.toml2
-rw-r--r--azalea-protocol/Cargo.toml4
-rw-r--r--azalea-protocol/azalea-protocol-macros/Cargo.toml2
-rw-r--r--azalea-registry/azalea-registry-macros/Cargo.toml2
-rw-r--r--azalea-world/Cargo.toml4
-rw-r--r--azalea/Cargo.toml4
16 files changed, 27 insertions, 28 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c60595d2..cad87752 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -101,7 +101,7 @@ dependencies = [
"async-task",
"concurrent-queue",
"fastrand 2.0.1",
- "futures-lite 2.0.1",
+ "futures-lite 2.1.0",
"slab",
]
@@ -177,7 +177,7 @@ dependencies = [
"criterion",
"derive_more",
"futures",
- "futures-lite 2.0.1",
+ "futures-lite 2.1.0",
"nohash-hasher",
"num-traits",
"parking_lot",
@@ -441,7 +441,7 @@ dependencies = [
"bytes",
"flate2",
"futures",
- "futures-lite 2.0.1",
+ "futures-lite 2.1.0",
"futures-util",
"once_cell",
"serde",
@@ -1281,14 +1281,13 @@ dependencies = [
[[package]]
name = "futures-lite"
-version = "2.0.1"
+version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb"
+checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143"
dependencies = [
"fastrand 2.0.1",
"futures-core",
"futures-io",
- "memchr",
"parking",
"pin-project-lite",
]
diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml
index 93d9c7f3..bbfcc9fd 100644
--- a/azalea-auth/Cargo.toml
+++ b/azalea-auth/Cargo.toml
@@ -20,12 +20,12 @@ reqwest = { version = "0.11.22", default-features = false, features = [
"json",
"rustls-tls",
] }
-rsa = "0.9.3"
-serde = { version = "1.0.192", features = ["derive"] }
+rsa = "0.9.6"
+serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
thiserror = "1.0.50"
tokio = { version = "1.34.0", features = ["fs"] }
-uuid = { version = "1.5.0", features = ["serde", "v3"] }
+uuid = { version = "1.6.1", features = ["serde", "v3"] }
md-5 = "0.10.6"
[dev-dependencies]
diff --git a/azalea-block/azalea-block-macros/Cargo.toml b/azalea-block/azalea-block-macros/Cargo.toml
index b77b541e..748a27e0 100644
--- a/azalea-block/azalea-block-macros/Cargo.toml
+++ b/azalea-block/azalea-block-macros/Cargo.toml
@@ -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.69"
+proc-macro2 = "1.0.70"
quote = "1.0.33"
syn = "2.0.39"
diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml
index 8876c7a8..f8f70bde 100644
--- a/azalea-buf/Cargo.toml
+++ b/azalea-buf/Cargo.toml
@@ -14,7 +14,7 @@ byteorder = "^1.5.0"
tracing = "0.1.40"
serde_json = { version = "^1.0", optional = true }
thiserror = "1.0.50"
-uuid = "^1.5.0"
+uuid = "^1.6.1"
simdnbt = "0.3"
[features]
diff --git a/azalea-buf/azalea-buf-macros/Cargo.toml b/azalea-buf/azalea-buf-macros/Cargo.toml
index 1cb41064..bded449b 100644
--- a/azalea-buf/azalea-buf-macros/Cargo.toml
+++ b/azalea-buf/azalea-buf-macros/Cargo.toml
@@ -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.69"
+proc-macro2 = "^1.0.70"
quote = "^1.0.33"
syn = { version = "^2.0.39", features = ["extra-traits"] }
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml
index d934d3d5..00dfe3d5 100644
--- a/azalea-client/Cargo.toml
+++ b/azalea-client/Cargo.toml
@@ -38,10 +38,10 @@ parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
regex = "1.10.2"
thiserror = "^1.0.50"
tokio = { version = "^1.34.0", features = ["sync"] }
-uuid = "^1.5.0"
+uuid = "^1.6.1"
azalea-entity = { version = "0.8.0", path = "../azalea-entity" }
serde_json = "1.0.108"
-serde = "1.0.192"
+serde = "1.0.193"
[features]
default = ["log"]
diff --git a/azalea-core/Cargo.toml b/azalea-core/Cargo.toml
index 6d7f190f..ad8d424e 100644
--- a/azalea-core/Cargo.toml
+++ b/azalea-core/Cargo.toml
@@ -17,7 +17,7 @@ bevy_ecs = { version = "0.12.1", default-features = false, optional = true }
nohash-hasher = "0.2.0"
num-traits = "0.2.17"
serde = { version = "^1.0", optional = true }
-uuid = "^1.5.0"
+uuid = "^1.6.1"
serde_json = "^1.0.108"
tracing = "0.1.40"
diff --git a/azalea-crypto/Cargo.toml b/azalea-crypto/Cargo.toml
index 65a18920..2d0bbf95 100644
--- a/azalea-crypto/Cargo.toml
+++ b/azalea-crypto/Cargo.toml
@@ -14,11 +14,11 @@ azalea-buf = { path = "../azalea-buf", version = "0.8.0" }
cfb8 = "0.8.1"
num-bigint = "^0.4.4"
rand = { version = "^0.8.5", features = ["getrandom"] }
-rsa = { version = "0.9.3", features = ["sha2"] }
+rsa = { version = "0.9.6", features = ["sha2"] }
rsa_public_encrypt_pkcs1 = "0.4.0"
sha-1 = "^0.10.1"
sha2 = "0.10.8"
-uuid = "^1.5.0"
+uuid = "^1.6.1"
[dev-dependencies]
criterion = { version = "^0.5.1", features = ["html_reports"] }
diff --git a/azalea-entity/Cargo.toml b/azalea-entity/Cargo.toml
index 81f4985f..e4ca1c89 100644
--- a/azalea-entity/Cargo.toml
+++ b/azalea-entity/Cargo.toml
@@ -25,4 +25,4 @@ tracing = "0.1.40"
nohash-hasher = "0.2.0"
parking_lot = "0.12.1"
thiserror = "1.0.50"
-uuid = "1.5.0"
+uuid = "1.6.1"
diff --git a/azalea-inventory/azalea-inventory-macros/Cargo.toml b/azalea-inventory/azalea-inventory-macros/Cargo.toml
index 0e819078..097e75df 100644
--- a/azalea-inventory/azalea-inventory-macros/Cargo.toml
+++ b/azalea-inventory/azalea-inventory-macros/Cargo.toml
@@ -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.69"
+proc-macro2 = "1.0.70"
quote = "1.0.33"
syn = "2.0.39"
diff --git a/azalea-physics/Cargo.toml b/azalea-physics/Cargo.toml
index ff0a7d34..4d237afa 100644
--- a/azalea-physics/Cargo.toml
+++ b/azalea-physics/Cargo.toml
@@ -23,4 +23,4 @@ parking_lot = "^0.12.1"
[dev-dependencies]
bevy_time = "0.12.1"
-uuid = "^1.5.0"
+uuid = "^1.6.1"
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml
index f18acbcc..007d37ba 100644
--- a/azalea-protocol/Cargo.toml
+++ b/azalea-protocol/Cargo.toml
@@ -34,7 +34,7 @@ byteorder = "^1.5.0"
bytes = "^1.5.0"
flate2 = "1.0.28"
futures = "0.3.29"
-futures-lite = "2.0.1"
+futures-lite = "2.1.0"
futures-util = "0.3.29"
tracing = "0.1.40"
serde = { version = "^1.0", features = ["serde_derive"] }
@@ -45,7 +45,7 @@ tokio-util = { version = "0.7.10", features = ["codec"] }
trust-dns-resolver = { version = "^0.23.2", default-features = false, features = [
"tokio-runtime",
] }
-uuid = "1.5.0"
+uuid = "1.6.1"
[features]
connecting = []
diff --git a/azalea-protocol/azalea-protocol-macros/Cargo.toml b/azalea-protocol/azalea-protocol-macros/Cargo.toml
index f463e066..0331caf8 100644
--- a/azalea-protocol/azalea-protocol-macros/Cargo.toml
+++ b/azalea-protocol/azalea-protocol-macros/Cargo.toml
@@ -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.69"
+proc-macro2 = "^1.0.70"
quote = "^1.0.33"
syn = "^2.0.39"
diff --git a/azalea-registry/azalea-registry-macros/Cargo.toml b/azalea-registry/azalea-registry-macros/Cargo.toml
index f8a8d8fc..3b9a6985 100644
--- a/azalea-registry/azalea-registry-macros/Cargo.toml
+++ b/azalea-registry/azalea-registry-macros/Cargo.toml
@@ -12,7 +12,7 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-proc-macro2 = "1.0.69"
+proc-macro2 = "1.0.70"
quote = "1.0.33"
syn = "2.0.39"
diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml
index be122cb3..8ba30fbb 100644
--- a/azalea-world/Cargo.toml
+++ b/azalea-world/Cargo.toml
@@ -25,9 +25,9 @@ nohash-hasher = "0.2.0"
once_cell = "1.18.0"
parking_lot = "^0.12.1"
thiserror = "1.0.50"
-uuid = "1.5.0"
+uuid = "1.6.1"
serde_json = "1.0.108"
-serde = "1.0.192"
+serde = "1.0.193"
[dev-dependencies]
azalea-client = { path = "../azalea-client" }
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml
index 8c9da998..17e88195 100644
--- a/azalea/Cargo.toml
+++ b/azalea/Cargo.toml
@@ -31,7 +31,7 @@ bevy_ecs = "0.12.1"
bevy_tasks = { version = "0.12.1", features = ["multi-threaded"] }
derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
futures = "0.3.29"
-futures-lite = "2.0.1"
+futures-lite = "2.1.0"
tracing = "0.1.40"
nohash-hasher = "0.2.0"
num-traits = "0.2.17"
@@ -39,7 +39,7 @@ parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
priority-queue = "1.3.2"
thiserror = "^1.0.50"
tokio = "^1.34.0"
-uuid = "1.5.0"
+uuid = "1.6.1"
bevy_log = "0.12.1"
azalea-entity = { version = "0.8.0", path = "../azalea-entity" }
bevy_time = "0.12.1"