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:
parent
8a1e1b7bb9
commit
f919fb65d6
18 changed files with 508 additions and 555 deletions
893
Cargo.lock
generated
893
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -11,23 +11,23 @@ version = "0.9.1"
|
|||
[dependencies]
|
||||
azalea-buf = { path = "../azalea-buf", version = "0.9.0" }
|
||||
azalea-crypto = { path = "../azalea-crypto", version = "0.9.0" }
|
||||
base64 = "0.21.7"
|
||||
chrono = { version = "0.4.34", default-features = false, features = ["serde"] }
|
||||
base64 = "0.22.0"
|
||||
chrono = { version = "0.4.38", default-features = false, features = ["serde"] }
|
||||
tracing = "0.1.40"
|
||||
num-bigint = "0.4.4"
|
||||
once_cell = "1.19.0"
|
||||
reqwest = { version = "0.11.24", default-features = false, features = [
|
||||
reqwest = { version = "0.12.4", default-features = false, features = [
|
||||
"json",
|
||||
"rustls-tls",
|
||||
] }
|
||||
rsa = "0.9.6"
|
||||
serde = { version = "1.0.196", features = ["derive"] }
|
||||
serde_json = "1.0.113"
|
||||
thiserror = "1.0.57"
|
||||
tokio = { version = "1.36.0", features = ["fs"] }
|
||||
uuid = { version = "1.7.0", features = ["serde", "v3"] }
|
||||
serde = { version = "1.0.198", features = ["derive"] }
|
||||
serde_json = "1.0.116"
|
||||
thiserror = "1.0.58"
|
||||
tokio = { version = "1.37.0", features = ["fs"] }
|
||||
uuid = { version = "1.8.0", features = ["serde", "v3"] }
|
||||
md-5 = "0.10.6"
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.11.2"
|
||||
tokio = { version = "1.36.0", features = ["full"] }
|
||||
env_logger = "0.11.3"
|
||||
tokio = { version = "1.37.0", features = ["full"] }
|
||||
|
|
|
@ -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.78"
|
||||
quote = "1.0.35"
|
||||
syn = "2.0.49"
|
||||
proc-macro2 = "1.0.81"
|
||||
quote = "1.0.36"
|
||||
syn = "2.0.60"
|
||||
|
|
|
@ -14,8 +14,8 @@ azalea-buf-macros = { path = "./azalea-buf-macros", version = "0.9.0" }
|
|||
byteorder = "^1.5.0"
|
||||
tracing = "0.1.40"
|
||||
serde_json = { version = "^1.0", optional = true }
|
||||
thiserror = "1.0.57"
|
||||
uuid = "^1.7.0"
|
||||
thiserror = "1.0.58"
|
||||
uuid = "^1.8.0"
|
||||
|
||||
[features]
|
||||
serde_json = ["dep:serde_json"]
|
||||
|
|
|
@ -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.78"
|
||||
quote = "^1.0.35"
|
||||
syn = { version = "^2.0.49", features = ["extra-traits"] }
|
||||
proc-macro2 = "^1.0.81"
|
||||
quote = "^1.0.36"
|
||||
syn = { version = "^2.0.60", features = ["extra-traits"] }
|
||||
|
|
|
@ -23,5 +23,5 @@ simdnbt = { version = "0.4", optional = true, git = "https://github.com/azalea-r
|
|||
tracing = "0.1.40"
|
||||
once_cell = "1.19.0"
|
||||
serde = { version = "^1.0", features = ["derive"] }
|
||||
serde_json = "^1.0.113"
|
||||
serde_json = "^1.0.116"
|
||||
azalea-registry = { path = "../azalea-registry", version = "0.9.0", optional = true }
|
||||
|
|
|
@ -10,9 +10,9 @@ version = "0.9.1"
|
|||
|
||||
[dependencies]
|
||||
simdnbt = { version = "0.4", git = "https://github.com/azalea-rs/simdnbt" }
|
||||
reqwest = { version = "0.11.24", default-features = false }
|
||||
anyhow = "1.0.79"
|
||||
async-trait = "0.1.77"
|
||||
reqwest = { version = "0.12.4", default-features = false }
|
||||
anyhow = "1.0.82"
|
||||
async-trait = "0.1.80"
|
||||
azalea-auth = { path = "../azalea-auth", version = "0.9.0" }
|
||||
azalea-block = { path = "../azalea-block", version = "0.9.0" }
|
||||
azalea-chat = { path = "../azalea-chat", version = "0.9.0" }
|
||||
|
@ -23,11 +23,11 @@ azalea-buf = { path = "../azalea-buf", version = "0.9.0" }
|
|||
azalea-protocol = { path = "../azalea-protocol", version = "0.9.0" }
|
||||
azalea-registry = { path = "../azalea-registry", version = "0.9.0" }
|
||||
azalea-world = { path = "../azalea-world", version = "0.9.0" }
|
||||
bevy_app = "0.13.0"
|
||||
bevy_ecs = "0.13.0"
|
||||
bevy_log = { version = "0.13.0", optional = true }
|
||||
bevy_tasks = "0.13.0"
|
||||
bevy_time = "0.13.0"
|
||||
bevy_app = "0.13.2"
|
||||
bevy_ecs = "0.13.2"
|
||||
bevy_log = { version = "0.13.2", optional = true }
|
||||
bevy_tasks = "0.13.2"
|
||||
bevy_time = "0.13.2"
|
||||
azalea-inventory = { path = "../azalea-inventory", version = "0.9.0" }
|
||||
derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
|
||||
futures = "0.3.30"
|
||||
|
@ -35,15 +35,15 @@ tracing = "0.1.40"
|
|||
nohash-hasher = "0.2.0"
|
||||
once_cell = "1.19.0"
|
||||
parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
|
||||
regex = "1.10.3"
|
||||
thiserror = "^1.0.57"
|
||||
tokio = { version = "^1.36.0", features = ["sync"] }
|
||||
uuid = "^1.7.0"
|
||||
regex = "1.10.4"
|
||||
thiserror = "^1.0.58"
|
||||
tokio = { version = "^1.37.0", features = ["sync"] }
|
||||
uuid = "^1.8.0"
|
||||
azalea-entity = { version = "0.9.0", path = "../azalea-entity" }
|
||||
serde_json = "1.0.113"
|
||||
serde = "1.0.196"
|
||||
serde_json = "1.0.116"
|
||||
serde = "1.0.198"
|
||||
minecraft_folder_path = "0.1.2"
|
||||
socks5-impl = "0.5.6"
|
||||
socks5-impl = "0.5.12"
|
||||
|
||||
[features]
|
||||
default = ["log"]
|
||||
|
|
|
@ -13,12 +13,12 @@ simdnbt = { version = "0.4", git = "https://github.com/azalea-rs/simdnbt" }
|
|||
azalea-buf = { path = "../azalea-buf", version = "0.9.0" }
|
||||
azalea-inventory = { version = "0.9.0", path = "../azalea-inventory" }
|
||||
azalea-registry = { path = "../azalea-registry", version = "0.9.0" }
|
||||
bevy_ecs = { version = "0.13.0", default-features = false, optional = true }
|
||||
bevy_ecs = { version = "0.13.2", default-features = false, optional = true }
|
||||
nohash-hasher = "0.2.0"
|
||||
num-traits = "0.2.18"
|
||||
serde = { version = "^1.0", optional = true }
|
||||
uuid = "^1.7.0"
|
||||
serde_json = "^1.0.113"
|
||||
uuid = "^1.8.0"
|
||||
serde_json = "^1.0.116"
|
||||
tracing = "0.1.40"
|
||||
|
||||
[features]
|
||||
|
|
|
@ -18,7 +18,7 @@ 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.7.0"
|
||||
uuid = "^1.8.0"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = { version = "^0.5.1", features = ["html_reports"] }
|
||||
|
|
|
@ -19,12 +19,12 @@ azalea-core = { version = "0.9.0", path = "../azalea-core" }
|
|||
azalea-inventory = { version = "0.9.0", path = "../azalea-inventory" }
|
||||
azalea-registry = { version = "0.9.0", path = "../azalea-registry" }
|
||||
azalea-world = { version = "0.9.0", path = "../azalea-world" }
|
||||
bevy_app = "0.13.0"
|
||||
bevy_ecs = "0.13.0"
|
||||
bevy_app = "0.13.2"
|
||||
bevy_ecs = "0.13.2"
|
||||
derive_more = "0.99.17"
|
||||
enum-as-inner = "0.6.0"
|
||||
tracing = "0.1.40"
|
||||
nohash-hasher = "0.2.0"
|
||||
parking_lot = "0.12.1"
|
||||
thiserror = "1.0.57"
|
||||
uuid = "1.7.0"
|
||||
thiserror = "1.0.58"
|
||||
uuid = "1.8.0"
|
||||
|
|
|
@ -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.78"
|
||||
quote = "1.0.35"
|
||||
syn = "2.0.49"
|
||||
proc-macro2 = "1.0.81"
|
||||
quote = "1.0.36"
|
||||
syn = "2.0.60"
|
||||
|
|
|
@ -11,5 +11,5 @@ version = "0.9.1"
|
|||
[dependencies]
|
||||
once_cell = "1.19.0"
|
||||
serde = "^1.0"
|
||||
serde_json = "^1.0.113"
|
||||
serde_json = "^1.0.116"
|
||||
# tokio = {version = "^1.21.2", features = ["fs"]}
|
||||
|
|
|
@ -15,14 +15,14 @@ azalea-entity = { version = "0.9.0", path = "../azalea-entity" }
|
|||
azalea-inventory = { version = "0.9.0", path = "../azalea-inventory" }
|
||||
azalea-registry = { path = "../azalea-registry", version = "0.9.0" }
|
||||
azalea-world = { path = "../azalea-world", version = "0.9.0" }
|
||||
bevy_app = "0.13.0"
|
||||
bevy_ecs = "0.13.0"
|
||||
bevy_app = "0.13.2"
|
||||
bevy_ecs = "0.13.2"
|
||||
tracing = "0.1.40"
|
||||
once_cell = "1.19.0"
|
||||
parking_lot = "^0.12.1"
|
||||
nohash-hasher = "0.2.0"
|
||||
smallvec = "1.13.1"
|
||||
smallvec = "1.13.2"
|
||||
|
||||
[dev-dependencies]
|
||||
bevy_time = "0.13.0"
|
||||
uuid = "^1.7.0"
|
||||
bevy_time = "0.13.2"
|
||||
uuid = "^1.8.0"
|
||||
|
|
|
@ -10,7 +10,7 @@ version = "0.9.1"
|
|||
|
||||
[dependencies]
|
||||
simdnbt = { version = "0.4", git = "https://github.com/azalea-rs/simdnbt" }
|
||||
async-recursion = "1.0.5"
|
||||
async-recursion = "1.1.0"
|
||||
azalea-auth = { path = "../azalea-auth", version = "0.9.0" }
|
||||
azalea-block = { path = "../azalea-block", default-features = false, version = "0.9.0" }
|
||||
azalea-brigadier = { path = "../azalea-brigadier", version = "0.9.0", features = [
|
||||
|
@ -29,26 +29,26 @@ azalea-inventory = { version = "0.9.0", path = "../azalea-inventory" }
|
|||
azalea-protocol-macros = { path = "./azalea-protocol-macros", version = "0.9.0" }
|
||||
azalea-registry = { path = "../azalea-registry", version = "0.9.0" }
|
||||
azalea-world = { path = "../azalea-world", version = "0.9.0" }
|
||||
bevy_ecs = { version = "0.13.0", default-features = false }
|
||||
bevy_ecs = { version = "0.13.2", default-features = false }
|
||||
byteorder = "^1.5.0"
|
||||
bytes = "^1.5.0"
|
||||
bytes = "^1.6.0"
|
||||
flate2 = "1.0.28"
|
||||
futures = "0.3.30"
|
||||
futures-lite = "2.2.0"
|
||||
futures-lite = "2.3.0"
|
||||
futures-util = "0.3.30"
|
||||
tracing = "0.1.40"
|
||||
serde = { version = "^1.0", features = ["serde_derive"] }
|
||||
serde_json = "^1.0.113"
|
||||
thiserror = "1.0.57"
|
||||
tokio = { version = "^1.36.0", features = ["io-util", "net", "macros"] }
|
||||
serde_json = "^1.0.116"
|
||||
thiserror = "1.0.58"
|
||||
tokio = { version = "^1.37.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",
|
||||
] }
|
||||
uuid = "1.7.0"
|
||||
log = "0.4.20"
|
||||
uuid = "1.8.0"
|
||||
log = "0.4.21"
|
||||
|
||||
socks5-impl = "0.5.6"
|
||||
socks5-impl = "0.5.12"
|
||||
|
||||
[features]
|
||||
connecting = []
|
||||
|
@ -57,7 +57,7 @@ packets = ["connecting", "dep:azalea-core"]
|
|||
strict_registry = ["packets"]
|
||||
|
||||
[dev-dependencies]
|
||||
anyhow = "^1.0.79"
|
||||
anyhow = "^1.0.82"
|
||||
tracing = "^0.1.40"
|
||||
tracing-subscriber = "^0.3.18"
|
||||
once_cell = "1.19.0"
|
||||
|
|
|
@ -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.78"
|
||||
quote = "^1.0.35"
|
||||
syn = "^2.0.49"
|
||||
proc-macro2 = "^1.0.81"
|
||||
quote = "^1.0.36"
|
||||
syn = "^2.0.60"
|
||||
|
|
|
@ -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.78"
|
||||
quote = "1.0.35"
|
||||
syn = "2.0.49"
|
||||
proc-macro2 = "1.0.81"
|
||||
quote = "1.0.36"
|
||||
syn = "2.0.60"
|
||||
|
||||
[features]
|
||||
serde = []
|
||||
|
|
|
@ -17,16 +17,16 @@ azalea-core = { path = "../azalea-core", version = "0.9.0", features = [
|
|||
] }
|
||||
azalea-inventory = { version = "0.9.0", path = "../azalea-inventory" }
|
||||
azalea-registry = { path = "../azalea-registry", version = "0.9.0" }
|
||||
bevy_ecs = "0.13.0"
|
||||
bevy_ecs = "0.13.2"
|
||||
derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
|
||||
tracing = "0.1.40"
|
||||
nohash-hasher = "0.2.0"
|
||||
once_cell = "1.19.0"
|
||||
parking_lot = "^0.12.1"
|
||||
thiserror = "1.0.57"
|
||||
uuid = "1.7.0"
|
||||
serde_json = "1.0.113"
|
||||
serde = "1.0.196"
|
||||
thiserror = "1.0.58"
|
||||
uuid = "1.8.0"
|
||||
serde_json = "1.0.116"
|
||||
serde = "1.0.198"
|
||||
rustc-hash = "1.1.0"
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
|
@ -12,8 +12,8 @@ pre-release-replacements = [
|
|||
]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "^1.0.79"
|
||||
async-trait = "0.1.77"
|
||||
anyhow = "^1.0.82"
|
||||
async-trait = "0.1.80"
|
||||
azalea-block = { version = "0.9.0", path = "../azalea-block" }
|
||||
azalea-chat = { version = "0.9.0", path = "../azalea-chat" }
|
||||
azalea-client = { version = "0.9.0", path = "../azalea-client", default-features = false }
|
||||
|
@ -26,23 +26,23 @@ azalea-world = { version = "0.9.0", path = "../azalea-world" }
|
|||
azalea-auth = { version = "0.9.0", path = "../azalea-auth" }
|
||||
azalea-brigadier = { version = "0.9.0", path = "../azalea-brigadier" }
|
||||
azalea-buf = { version = "0.9.0", path = "../azalea-buf" }
|
||||
bevy_app = "0.13.0"
|
||||
bevy_ecs = "0.13.0"
|
||||
bevy_tasks = { version = "0.13.0", features = ["multi-threaded"] }
|
||||
bevy_app = "0.13.2"
|
||||
bevy_ecs = "0.13.2"
|
||||
bevy_tasks = { version = "0.13.2", features = ["multi-threaded"] }
|
||||
derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
|
||||
futures = "0.3.30"
|
||||
futures-lite = "2.2.0"
|
||||
futures-lite = "2.3.0"
|
||||
tracing = "0.1.40"
|
||||
nohash-hasher = "0.2.0"
|
||||
num-traits = "0.2.18"
|
||||
parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
|
||||
priority-queue = "1.4.0"
|
||||
thiserror = "^1.0.57"
|
||||
tokio = "^1.36.0"
|
||||
uuid = "1.7.0"
|
||||
bevy_log = "0.13.0"
|
||||
priority-queue = "2.0.2"
|
||||
thiserror = "^1.0.58"
|
||||
tokio = "^1.37.0"
|
||||
uuid = "1.8.0"
|
||||
bevy_log = "0.13.2"
|
||||
azalea-entity = { version = "0.9.0", path = "../azalea-entity" }
|
||||
bevy_time = "0.13.0"
|
||||
bevy_time = "0.13.2"
|
||||
rustc-hash = "1.1.0"
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
Loading…
Add table
Reference in a new issue