1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00

upgrade deps

This commit is contained in:
mat 2023-12-05 11:06:24 -06:00
parent 53d7c1aa97
commit ab5f6d598d
16 changed files with 27 additions and 28 deletions

11
Cargo.lock generated
View file

@ -101,7 +101,7 @@ dependencies = [
"async-task", "async-task",
"concurrent-queue", "concurrent-queue",
"fastrand 2.0.1", "fastrand 2.0.1",
"futures-lite 2.0.1", "futures-lite 2.1.0",
"slab", "slab",
] ]
@ -177,7 +177,7 @@ dependencies = [
"criterion", "criterion",
"derive_more", "derive_more",
"futures", "futures",
"futures-lite 2.0.1", "futures-lite 2.1.0",
"nohash-hasher", "nohash-hasher",
"num-traits", "num-traits",
"parking_lot", "parking_lot",
@ -441,7 +441,7 @@ dependencies = [
"bytes", "bytes",
"flate2", "flate2",
"futures", "futures",
"futures-lite 2.0.1", "futures-lite 2.1.0",
"futures-util", "futures-util",
"once_cell", "once_cell",
"serde", "serde",
@ -1281,14 +1281,13 @@ dependencies = [
[[package]] [[package]]
name = "futures-lite" name = "futures-lite"
version = "2.0.1" version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb" checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143"
dependencies = [ dependencies = [
"fastrand 2.0.1", "fastrand 2.0.1",
"futures-core", "futures-core",
"futures-io", "futures-io",
"memchr",
"parking", "parking",
"pin-project-lite", "pin-project-lite",
] ]

View file

@ -20,12 +20,12 @@ reqwest = { version = "0.11.22", default-features = false, features = [
"json", "json",
"rustls-tls", "rustls-tls",
] } ] }
rsa = "0.9.3" rsa = "0.9.6"
serde = { version = "1.0.192", features = ["derive"] } serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108" serde_json = "1.0.108"
thiserror = "1.0.50" thiserror = "1.0.50"
tokio = { version = "1.34.0", features = ["fs"] } 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" md-5 = "0.10.6"
[dev-dependencies] [dev-dependencies]

View file

@ -12,6 +12,6 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
proc-macro2 = "1.0.69" proc-macro2 = "1.0.70"
quote = "1.0.33" quote = "1.0.33"
syn = "2.0.39" syn = "2.0.39"

View file

@ -14,7 +14,7 @@ byteorder = "^1.5.0"
tracing = "0.1.40" tracing = "0.1.40"
serde_json = { version = "^1.0", optional = true } serde_json = { version = "^1.0", optional = true }
thiserror = "1.0.50" thiserror = "1.0.50"
uuid = "^1.5.0" uuid = "^1.6.1"
simdnbt = "0.3" simdnbt = "0.3"
[features] [features]

View file

@ -11,6 +11,6 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
proc-macro2 = "^1.0.69" proc-macro2 = "^1.0.70"
quote = "^1.0.33" quote = "^1.0.33"
syn = { version = "^2.0.39", features = ["extra-traits"] } syn = { version = "^2.0.39", features = ["extra-traits"] }

View file

@ -38,10 +38,10 @@ parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
regex = "1.10.2" regex = "1.10.2"
thiserror = "^1.0.50" thiserror = "^1.0.50"
tokio = { version = "^1.34.0", features = ["sync"] } tokio = { version = "^1.34.0", features = ["sync"] }
uuid = "^1.5.0" uuid = "^1.6.1"
azalea-entity = { version = "0.8.0", path = "../azalea-entity" } azalea-entity = { version = "0.8.0", path = "../azalea-entity" }
serde_json = "1.0.108" serde_json = "1.0.108"
serde = "1.0.192" serde = "1.0.193"
[features] [features]
default = ["log"] default = ["log"]

View file

@ -17,7 +17,7 @@ bevy_ecs = { version = "0.12.1", default-features = false, optional = true }
nohash-hasher = "0.2.0" nohash-hasher = "0.2.0"
num-traits = "0.2.17" num-traits = "0.2.17"
serde = { version = "^1.0", optional = true } serde = { version = "^1.0", optional = true }
uuid = "^1.5.0" uuid = "^1.6.1"
serde_json = "^1.0.108" serde_json = "^1.0.108"
tracing = "0.1.40" tracing = "0.1.40"

View file

@ -14,11 +14,11 @@ azalea-buf = { path = "../azalea-buf", version = "0.8.0" }
cfb8 = "0.8.1" cfb8 = "0.8.1"
num-bigint = "^0.4.4" num-bigint = "^0.4.4"
rand = { version = "^0.8.5", features = ["getrandom"] } 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" rsa_public_encrypt_pkcs1 = "0.4.0"
sha-1 = "^0.10.1" sha-1 = "^0.10.1"
sha2 = "0.10.8" sha2 = "0.10.8"
uuid = "^1.5.0" uuid = "^1.6.1"
[dev-dependencies] [dev-dependencies]
criterion = { version = "^0.5.1", features = ["html_reports"] } criterion = { version = "^0.5.1", features = ["html_reports"] }

View file

@ -25,4 +25,4 @@ tracing = "0.1.40"
nohash-hasher = "0.2.0" nohash-hasher = "0.2.0"
parking_lot = "0.12.1" parking_lot = "0.12.1"
thiserror = "1.0.50" thiserror = "1.0.50"
uuid = "1.5.0" uuid = "1.6.1"

View file

@ -12,6 +12,6 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
proc-macro2 = "1.0.69" proc-macro2 = "1.0.70"
quote = "1.0.33" quote = "1.0.33"
syn = "2.0.39" syn = "2.0.39"

View file

@ -23,4 +23,4 @@ parking_lot = "^0.12.1"
[dev-dependencies] [dev-dependencies]
bevy_time = "0.12.1" bevy_time = "0.12.1"
uuid = "^1.5.0" uuid = "^1.6.1"

View file

@ -34,7 +34,7 @@ byteorder = "^1.5.0"
bytes = "^1.5.0" bytes = "^1.5.0"
flate2 = "1.0.28" flate2 = "1.0.28"
futures = "0.3.29" futures = "0.3.29"
futures-lite = "2.0.1" futures-lite = "2.1.0"
futures-util = "0.3.29" futures-util = "0.3.29"
tracing = "0.1.40" tracing = "0.1.40"
serde = { version = "^1.0", features = ["serde_derive"] } 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 = [ trust-dns-resolver = { version = "^0.23.2", default-features = false, features = [
"tokio-runtime", "tokio-runtime",
] } ] }
uuid = "1.5.0" uuid = "1.6.1"
[features] [features]
connecting = [] connecting = []

View file

@ -11,6 +11,6 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
proc-macro2 = "^1.0.69" proc-macro2 = "^1.0.70"
quote = "^1.0.33" quote = "^1.0.33"
syn = "^2.0.39" syn = "^2.0.39"

View file

@ -12,7 +12,7 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
proc-macro2 = "1.0.69" proc-macro2 = "1.0.70"
quote = "1.0.33" quote = "1.0.33"
syn = "2.0.39" syn = "2.0.39"

View file

@ -25,9 +25,9 @@ nohash-hasher = "0.2.0"
once_cell = "1.18.0" once_cell = "1.18.0"
parking_lot = "^0.12.1" parking_lot = "^0.12.1"
thiserror = "1.0.50" thiserror = "1.0.50"
uuid = "1.5.0" uuid = "1.6.1"
serde_json = "1.0.108" serde_json = "1.0.108"
serde = "1.0.192" serde = "1.0.193"
[dev-dependencies] [dev-dependencies]
azalea-client = { path = "../azalea-client" } azalea-client = { path = "../azalea-client" }

View file

@ -31,7 +31,7 @@ bevy_ecs = "0.12.1"
bevy_tasks = { version = "0.12.1", features = ["multi-threaded"] } bevy_tasks = { version = "0.12.1", features = ["multi-threaded"] }
derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] } derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
futures = "0.3.29" futures = "0.3.29"
futures-lite = "2.0.1" futures-lite = "2.1.0"
tracing = "0.1.40" tracing = "0.1.40"
nohash-hasher = "0.2.0" nohash-hasher = "0.2.0"
num-traits = "0.2.17" num-traits = "0.2.17"
@ -39,7 +39,7 @@ parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
priority-queue = "1.3.2" priority-queue = "1.3.2"
thiserror = "^1.0.50" thiserror = "^1.0.50"
tokio = "^1.34.0" tokio = "^1.34.0"
uuid = "1.5.0" uuid = "1.6.1"
bevy_log = "0.12.1" bevy_log = "0.12.1"
azalea-entity = { version = "0.8.0", path = "../azalea-entity" } azalea-entity = { version = "0.8.0", path = "../azalea-entity" }
bevy_time = "0.12.1" bevy_time = "0.12.1"