mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 06:16:04 +00:00
upgrade deps
This commit is contained in:
parent
53d7c1aa97
commit
ab5f6d598d
16 changed files with 27 additions and 28 deletions
11
Cargo.lock
generated
11
Cargo.lock
generated
|
@ -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",
|
||||
]
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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"] }
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"] }
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -23,4 +23,4 @@ parking_lot = "^0.12.1"
|
|||
|
||||
[dev-dependencies]
|
||||
bevy_time = "0.12.1"
|
||||
uuid = "^1.5.0"
|
||||
uuid = "^1.6.1"
|
||||
|
|
|
@ -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 = []
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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" }
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue