diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml index bed3591d..7b2eb3fa 100644 --- a/azalea-auth/Cargo.toml +++ b/azalea-auth/Cargo.toml @@ -13,7 +13,7 @@ azalea-buf = { path = "../azalea-buf", version = "0.10.0" } azalea-crypto = { path = "../azalea-crypto", version = "0.10.0" } base64 = "0.22.1" chrono = { version = "0.4.38", default-features = false, features = ["serde"] } -tracing = "0.1.40" +md-5 = "0.10.6" num-bigint = "0.4.6" once_cell = "1.19.0" reqwest = { version = "0.12.5", default-features = false, features = ["json", "rustls-tls"] } @@ -22,8 +22,8 @@ serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.120" thiserror = "1.0.61" tokio = { version = "1.38.0", features = ["fs"] } +tracing = "0.1.40" uuid = { version = "1.9.1", features = ["serde", "v3"] } -md-5 = "0.10.6" [dev-dependencies] env_logger = "0.11.3" diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml index e37b8e45..b36e7d4b 100644 --- a/azalea-buf/Cargo.toml +++ b/azalea-buf/Cargo.toml @@ -9,12 +9,12 @@ version = "0.10.3+mc1.21.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = "0.6" azalea-buf-macros = { path = "./azalea-buf-macros", version = "0.10.0" } byteorder = "^1.5.0" -tracing = "0.1.40" serde_json = { version = "^1.0", optional = true } +simdnbt = "0.6" thiserror = "1.0.61" +tracing = "0.1.40" uuid = "^1.9.1" [features] diff --git a/azalea-chat/Cargo.toml b/azalea-chat/Cargo.toml index 54a33233..eaf74d80 100644 --- a/azalea-chat/Cargo.toml +++ b/azalea-chat/Cargo.toml @@ -17,9 +17,9 @@ numbers = ["dep:azalea-registry", "dep:simdnbt"] [dependencies] azalea-buf = { path = "../azalea-buf", features = ["serde_json"], version = "0.10.0", optional = true } azalea-language = { path = "../azalea-language", version = "0.10.0" } -simdnbt = { version = "0.6", optional = true } -tracing = "0.1.40" +azalea-registry = { path = "../azalea-registry", version = "0.10.0", optional = true } once_cell = "1.19.0" serde = { version = "^1.0", features = ["derive"] } serde_json = "^1.0.120" -azalea-registry = { path = "../azalea-registry", version = "0.10.0", optional = true } +simdnbt = { version = "0.6", optional = true } +tracing = "0.1.40" diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml index 089f48ed..69339076 100644 --- a/azalea-client/Cargo.toml +++ b/azalea-client/Cargo.toml @@ -9,17 +9,17 @@ version = "0.10.3+mc1.21.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = "0.6" -reqwest = { version = "0.12.5", default-features = false } anyhow = "1.0.86" async-trait = "0.1.80" azalea-auth = { path = "../azalea-auth", version = "0.10.0" } azalea-block = { path = "../azalea-block", version = "0.10.0" } +azalea-buf = { path = "../azalea-buf", version = "0.10.0" } azalea-chat = { path = "../azalea-chat", version = "0.10.0" } azalea-core = { path = "../azalea-core", version = "0.10.0" } azalea-crypto = { path = "../azalea-crypto", version = "0.10.0" } +azalea-entity = { version = "0.10.0", path = "../azalea-entity" } +azalea-inventory = { version = "0.10.0", path = "../azalea-inventory" } azalea-physics = { path = "../azalea-physics", version = "0.10.0" } -azalea-buf = { path = "../azalea-buf", version = "0.10.0" } azalea-protocol = { path = "../azalea-protocol", version = "0.10.0" } azalea-registry = { path = "../azalea-registry", version = "0.10.0" } azalea-world = { path = "../azalea-world", version = "0.10.0" } @@ -30,19 +30,19 @@ bevy_tasks = "0.13.0" bevy_time = "0.13.0" derive_more = { version = "0.99.18", features = ["deref", "deref_mut"] } futures = "0.3.30" -tracing = "0.1.40" +minecraft_folder_path = "0.1.2" nohash-hasher = "0.2.0" once_cell = "1.19.0" parking_lot = { version = "^0.12.3", features = ["deadlock_detection"] } regex = "1.10.5" +reqwest = { version = "0.12.5", default-features = false } +serde = "1.0.203" +serde_json = "1.0.120" +simdnbt = "0.6" thiserror = "^1.0.61" tokio = { version = "^1.38.0", features = ["sync"] } +tracing = "0.1.40" uuid = "^1.9.1" -serde_json = "1.0.120" -serde = "1.0.203" -minecraft_folder_path = "0.1.2" -azalea-entity = { version = "0.10.0", path = "../azalea-entity" } -azalea-inventory = { version = "0.10.0", path = "../azalea-inventory" } [features] default = ["log"] diff --git a/azalea-core/Cargo.toml b/azalea-core/Cargo.toml index 00781373..062b76e1 100644 --- a/azalea-core/Cargo.toml +++ b/azalea-core/Cargo.toml @@ -9,16 +9,16 @@ version = "0.10.3+mc1.21.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = "0.6" azalea-buf = { path = "../azalea-buf", version = "0.10.0" } azalea-registry = { path = "../azalea-registry", version = "0.10.0" } bevy_ecs = { version = "0.13.0", default-features = false, optional = true } nohash-hasher = "0.2.0" num-traits = "0.2.19" serde = { version = "^1.0", optional = true } -uuid = "^1.9.1" serde_json = "^1.0.120" +simdnbt = "0.6" tracing = "0.1.40" +uuid = "^1.9.1" [features] bevy_ecs = ["dep:bevy_ecs"] diff --git a/azalea-entity/Cargo.toml b/azalea-entity/Cargo.toml index 3d726e06..704330fe 100644 --- a/azalea-entity/Cargo.toml +++ b/azalea-entity/Cargo.toml @@ -9,7 +9,6 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = "0.6" azalea-block = { version = "0.10.0", path = "../azalea-block" } azalea-buf = { version = "0.10.0", path = "../azalea-buf" } azalea-chat = { version = "0.10.0", path = "../azalea-chat", features = ["azalea-buf"] } @@ -21,8 +20,9 @@ bevy_app = "0.13.0" bevy_ecs = "0.13.0" derive_more = "0.99.18" enum-as-inner = "0.6.0" -tracing = "0.1.40" nohash-hasher = "0.2.0" parking_lot = "0.12.3" +simdnbt = "0.6" thiserror = "1.0.61" +tracing = "0.1.40" uuid = "1.9.1" diff --git a/azalea-inventory/Cargo.toml b/azalea-inventory/Cargo.toml index edcfbcd6..ec7bf801 100644 --- a/azalea-inventory/Cargo.toml +++ b/azalea-inventory/Cargo.toml @@ -9,10 +9,10 @@ version = "0.10.3+mc1.21.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = "0.6" azalea-buf = { version = "0.10.0", path = "../azalea-buf" } -azalea-inventory-macros = { version = "0.10.0", path = "./azalea-inventory-macros" } -azalea-registry = { version = "0.10.0", path = "../azalea-registry" } azalea-chat = { version = "0.10.0", path = "../azalea-chat", features = ["azalea-buf"] } azalea-core = { version = "0.10.0", path = "../azalea-core" } +azalea-inventory-macros = { version = "0.10.0", path = "./azalea-inventory-macros" } +azalea-registry = { version = "0.10.0", path = "../azalea-registry" } +simdnbt = "0.6" uuid = "1.9.1" diff --git a/azalea-language/Cargo.toml b/azalea-language/Cargo.toml index 06d1240a..d10d3b38 100644 --- a/azalea-language/Cargo.toml +++ b/azalea-language/Cargo.toml @@ -12,4 +12,4 @@ version = "0.10.3+mc1.21.1" once_cell = "1.19.0" serde = "^1.0" serde_json = "^1.0.120" -# tokio = {version = "^1.21.2", features = ["fs"]} +#tokio = { version = "^1.21.2", features = ["fs"] } diff --git a/azalea-physics/Cargo.toml b/azalea-physics/Cargo.toml index 2dad5da5..d2319cbf 100644 --- a/azalea-physics/Cargo.toml +++ b/azalea-physics/Cargo.toml @@ -11,17 +11,17 @@ version = "0.10.3+mc1.21.1" [dependencies] azalea-block = { path = "../azalea-block", version = "0.10.0" } azalea-core = { path = "../azalea-core", version = "0.10.0" } +azalea-entity = { version = "0.10.0", path = "../azalea-entity" } +azalea-inventory = { version = "0.10.0", path = "../azalea-inventory" } azalea-registry = { path = "../azalea-registry", version = "0.10.0" } azalea-world = { path = "../azalea-world", version = "0.10.0" } bevy_app = "0.13.0" bevy_ecs = "0.13.0" -tracing = "0.1.40" +nohash-hasher = "0.2.0" once_cell = "1.19.0" parking_lot = "^0.12.3" -nohash-hasher = "0.2.0" smallvec = "1.13.2" -azalea-entity = { version = "0.10.0", path = "../azalea-entity" } -azalea-inventory = { version = "0.10.0", path = "../azalea-inventory" } +tracing = "0.1.40" [dev-dependencies] bevy_time = "0.13.0" diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml index 2720d235..87bbf974 100644 --- a/azalea-protocol/Cargo.toml +++ b/azalea-protocol/Cargo.toml @@ -9,7 +9,6 @@ version = "0.10.3+mc1.21.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = "0.6" async-recursion = "1.1.1" azalea-auth = { path = "../azalea-auth", version = "0.10.0" } azalea-block = { path = "../azalea-block", default-features = false, version = "0.10.0" } @@ -18,6 +17,8 @@ azalea-buf = { path = "../azalea-buf", version = "0.10.0" } azalea-chat = { path = "../azalea-chat", version = "0.10.0", features = ["numbers", "azalea-buf"] } azalea-core = { path = "../azalea-core", optional = true, version = "0.10.0", features = ["serde"] } azalea-crypto = { path = "../azalea-crypto", version = "0.10.0" } +azalea-entity = { version = "0.10.0", path = "../azalea-entity" } +azalea-inventory = { version = "0.10.0", path = "../azalea-inventory" } azalea-protocol-macros = { path = "./azalea-protocol-macros", version = "0.10.0" } azalea-registry = { path = "../azalea-registry", version = "0.10.0" } azalea-world = { path = "../azalea-world", version = "0.10.0" } @@ -28,18 +29,17 @@ flate2 = "1.0.30" futures = "0.3.30" futures-lite = "2.3.0" futures-util = "0.3.30" -tracing = "0.1.40" +log = "0.4.22" serde = { version = "^1.0", features = ["serde_derive"] } serde_json = "^1.0.120" +simdnbt = "0.6" +socks5-impl = "0.5.14" thiserror = "1.0.61" tokio = { version = "^1.38.0", features = ["io-util", "net", "macros"] } tokio-util = { version = "0.7.11", features = ["codec"] } +tracing = "0.1.40" trust-dns-resolver = { version = "^0.23.2", default-features = false, features = ["tokio-runtime"] } uuid = "1.9.1" -log = "0.4.22" -azalea-entity = { version = "0.10.0", path = "../azalea-entity" } -azalea-inventory = { version = "0.10.0", path = "../azalea-inventory" } -socks5-impl = "0.5.14" [features] connecting = [] @@ -48,6 +48,6 @@ packets = ["connecting", "dep:azalea-core"] [dev-dependencies] anyhow = "^1.0.86" +once_cell = "1.19.0" tracing = "^0.1.40" tracing-subscriber = "^0.3.18" -once_cell = "1.19.0" diff --git a/azalea-registry/Cargo.toml b/azalea-registry/Cargo.toml index 3e968b24..d78026ba 100644 --- a/azalea-registry/Cargo.toml +++ b/azalea-registry/Cargo.toml @@ -9,11 +9,12 @@ version = "0.10.3+mc1.21.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = "0.6" azalea-buf = { path = "../azalea-buf", version = "0.10.0" } azalea-registry-macros = { path = "./azalea-registry-macros", version = "0.10.0" } once_cell = "1.19.0" serde = { version = "^1.0", optional = true } +simdnbt = "0.6" + [features] serde = ["azalea-registry-macros/serde", "dep:serde"] default = ["serde"] diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml index 6da8ce22..4e81ff6d 100644 --- a/azalea-world/Cargo.toml +++ b/azalea-world/Cargo.toml @@ -9,22 +9,22 @@ version = "0.10.3+mc1.21.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = "0.6" azalea-block = { path = "../azalea-block", default-features = false, version = "0.10.0" } azalea-buf = { path = "../azalea-buf", version = "0.10.0" } azalea-core = { path = "../azalea-core", version = "0.10.0", features = ["bevy_ecs"] } azalea-registry = { path = "../azalea-registry", version = "0.10.0" } bevy_ecs = "0.13.0" derive_more = { version = "0.99.18", features = ["deref", "deref_mut"] } -tracing = "0.1.40" nohash-hasher = "0.2.0" once_cell = "1.19.0" parking_lot = "^0.12.3" -thiserror = "1.0.61" -uuid = "1.9.1" -serde_json = "1.0.120" -serde = "1.0.203" rustc-hash = "2.0.0" +serde = "1.0.203" +serde_json = "1.0.120" +simdnbt = "0.6" +thiserror = "1.0.61" +tracing = "0.1.40" +uuid = "1.9.1" [dev-dependencies] azalea-client = { path = "../azalea-client" }