From 64d48897afe5bcb40931f8ef8b3594fe275751e8 Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 25 Jan 2024 00:44:20 -0600 Subject: [PATCH] update deps --- Cargo.lock | 149 ++++++++++++------ azalea-auth/Cargo.toml | 8 +- azalea-block/azalea-block-macros/Cargo.toml | 2 +- azalea-block/src/lib.rs | 1 + azalea-buf/Cargo.toml | 4 +- azalea-buf/azalea-buf-macros/Cargo.toml | 2 +- azalea-chat/Cargo.toml | 2 +- azalea-client/Cargo.toml | 6 +- azalea-core/Cargo.toml | 4 +- azalea-crypto/Cargo.toml | 2 +- azalea-entity/Cargo.toml | 4 +- azalea-inventory/Cargo.toml | 2 +- .../azalea-inventory-macros/Cargo.toml | 2 +- azalea-physics/Cargo.toml | 2 +- azalea-protocol/Cargo.toml | 4 +- .../azalea-protocol-macros/Cargo.toml | 2 +- azalea-registry/Cargo.toml | 3 +- .../azalea-registry-macros/Cargo.toml | 2 +- azalea-world/Cargo.toml | 4 +- azalea/Cargo.toml | 2 +- 20 files changed, 131 insertions(+), 76 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 980188251..57417f862 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -68,12 +68,54 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" +[[package]] +name = "anstream" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "utf8parse", +] + [[package]] name = "anstyle" version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" +[[package]] +name = "anstyle-parse" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" +dependencies = [ + "anstyle", + "windows-sys 0.52.0", +] + [[package]] name = "anyhow" version = "1.0.79" @@ -528,9 +570,9 @@ dependencies = [ [[package]] name = "base64" -version = "0.21.5" +version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" [[package]] name = "base64ct" @@ -809,9 +851,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" -version = "0.4.31" +version = "0.4.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" +checksum = "41daef31d7a747c5c847246f36de49ced6f7403b4cdabc807a97b5cc184cda7a" dependencies = [ "num-traits", "serde", @@ -879,6 +921,12 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" +[[package]] +name = "colorchoice" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + [[package]] name = "concurrent-queue" version = "2.4.0" @@ -1105,17 +1153,27 @@ dependencies = [ "syn 2.0.48", ] +[[package]] +name = "env_filter" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" +dependencies = [ + "log", + "regex", +] + [[package]] name = "env_logger" -version = "0.10.1" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" +checksum = "9eeb342678d785662fd2514be38c459bb925f02b68dd2a3e0f21d7ef82d979dd" dependencies = [ + "anstream", + "anstyle", + "env_filter", "humantime", - "is-terminal", "log", - "regex", - "termcolor", ] [[package]] @@ -1345,9 +1403,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" +checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" dependencies = [ "cfg-if", "js-sys", @@ -1599,9 +1657,9 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "js-sys" -version = "0.3.66" +version = "0.3.67" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" +checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" dependencies = [ "wasm-bindgen", ] @@ -1617,9 +1675,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.151" +version = "0.2.152" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" +checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" [[package]] name = "libm" @@ -2010,9 +2068,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.76" +version = "1.0.78" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" +checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" dependencies = [ "unicode-ident", ] @@ -2087,13 +2145,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.2" +version = "1.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" +checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.3", + "regex-automata 0.4.4", "regex-syntax 0.8.2", ] @@ -2108,9 +2166,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" +checksum = "3b7fa1134405e2ec9353fd416b17f8dacd46c473d7d3fd1cf202706a14eb792a" dependencies = [ "aho-corasick", "memchr", @@ -2427,8 +2485,8 @@ dependencies = [ [[package]] name = "simdnbt" -version = "0.3.0" -source = "git+https://github.com/azalea-rs/simdnbt#c255ab673a7439c52dd299eac53ea59566cdda9d" +version = "0.4.0" +source = "git+https://github.com/azalea-rs/simdnbt#4594562ef0146431fd8c4405c753b32d1bb89c6a" dependencies = [ "byteorder", "flate2", @@ -2439,8 +2497,8 @@ dependencies = [ [[package]] name = "simdnbt-derive" -version = "0.3.0" -source = "git+https://github.com/azalea-rs/simdnbt#c255ab673a7439c52dd299eac53ea59566cdda9d" +version = "0.4.0" +source = "git+https://github.com/azalea-rs/simdnbt#4594562ef0146431fd8c4405c753b32d1bb89c6a" dependencies = [ "proc-macro2", "quote", @@ -2567,15 +2625,6 @@ dependencies = [ "libc", ] -[[package]] -name = "termcolor" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" -dependencies = [ - "winapi-util", -] - [[package]] name = "thiserror" version = "1.0.56" @@ -2895,11 +2944,17 @@ dependencies = [ "percent-encoding", ] +[[package]] +name = "utf8parse" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" + [[package]] name = "uuid" -version = "1.6.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" +checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" dependencies = [ "getrandom", "md-5", @@ -2951,9 +3006,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.89" +version = "0.2.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" +checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -2961,9 +3016,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.89" +version = "0.2.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" +checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" dependencies = [ "bumpalo", "log", @@ -2988,9 +3043,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.89" +version = "0.2.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" +checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -2998,9 +3053,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.89" +version = "0.2.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" +checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" dependencies = [ "proc-macro2", "quote", @@ -3011,9 +3066,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-shared" -version = "0.2.89" +version = "0.2.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" +checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" [[package]] name = "web-sys" diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml index cf98544bc..0d65b7e02 100644 --- a/azalea-auth/Cargo.toml +++ b/azalea-auth/Cargo.toml @@ -11,8 +11,8 @@ version = "0.9.0" [dependencies] azalea-buf = { path = "../azalea-buf", version = "0.9.0" } azalea-crypto = { path = "../azalea-crypto", version = "0.9.0" } -base64 = "0.21.5" -chrono = { version = "0.4.31", default-features = false, features = ["serde"] } +base64 = "0.21.7" +chrono = { version = "0.4.32", default-features = false, features = ["serde"] } tracing = "0.1.40" num-bigint = "0.4.4" once_cell = "1.19.0" @@ -25,9 +25,9 @@ serde = { version = "1.0.195", features = ["derive"] } serde_json = "1.0.111" thiserror = "1.0.56" tokio = { version = "1.35.1", features = ["fs"] } -uuid = { version = "1.6.1", features = ["serde", "v3"] } +uuid = { version = "1.7.0", features = ["serde", "v3"] } md-5 = "0.10.6" [dev-dependencies] -env_logger = "0.10.1" +env_logger = "0.11.0" tokio = { version = "1.35.1", features = ["full"] } diff --git a/azalea-block/azalea-block-macros/Cargo.toml b/azalea-block/azalea-block-macros/Cargo.toml index 5fa1ce486..97f1767f0 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.76" +proc-macro2 = "1.0.78" quote = "1.0.35" syn = "2.0.48" diff --git a/azalea-block/src/lib.rs b/azalea-block/src/lib.rs index 983de5791..dc41b4055 100755 --- a/azalea-block/src/lib.rs +++ b/azalea-block/src/lib.rs @@ -1,4 +1,5 @@ #![doc = include_str!("../README.md")] +#![feature(trait_upcasting)] mod behavior; mod generated; diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml index 60f97f2b3..31a1b4643 100644 --- a/azalea-buf/Cargo.toml +++ b/azalea-buf/Cargo.toml @@ -9,13 +9,13 @@ version = "0.9.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = { version = "0.3", git = "https://github.com/azalea-rs/simdnbt" } +simdnbt = { version = "0.4", git = "https://github.com/azalea-rs/simdnbt" } 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.56" -uuid = "^1.6.1" +uuid = "^1.7.0" [features] serde_json = ["dep:serde_json"] diff --git a/azalea-buf/azalea-buf-macros/Cargo.toml b/azalea-buf/azalea-buf-macros/Cargo.toml index f684ae2e7..1fc322941 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.76" +proc-macro2 = "^1.0.78" quote = "^1.0.35" syn = { version = "^2.0.48", features = ["extra-traits"] } diff --git a/azalea-chat/Cargo.toml b/azalea-chat/Cargo.toml index 7f66aa7d3..b9e8f697b 100644 --- a/azalea-chat/Cargo.toml +++ b/azalea-chat/Cargo.toml @@ -19,7 +19,7 @@ azalea-buf = { path = "../azalea-buf", features = [ "serde_json", ], version = "0.9.0", optional = true } azalea-language = { path = "../azalea-language", version = "0.9.0" } -simdnbt = { version = "0.3", optional = true, git = "https://github.com/azalea-rs/simdnbt" } +simdnbt = { version = "0.4", optional = true, git = "https://github.com/azalea-rs/simdnbt" } tracing = "0.1.40" once_cell = "1.19.0" serde = { version = "^1.0", features = ["derive"] } diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml index 70ab22cf0..37e450acf 100644 --- a/azalea-client/Cargo.toml +++ b/azalea-client/Cargo.toml @@ -9,7 +9,7 @@ version = "0.9.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = { version = "0.3", git = "https://github.com/azalea-rs/simdnbt" } +simdnbt = { version = "0.4", git = "https://github.com/azalea-rs/simdnbt" } reqwest = { version = "0.11.23", default-features = false } anyhow = "1.0.79" async-trait = "0.1.77" @@ -35,10 +35,10 @@ 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.2" +regex = "1.10.3" thiserror = "^1.0.56" tokio = { version = "^1.35.1", features = ["sync"] } -uuid = "^1.6.1" +uuid = "^1.7.0" azalea-entity = { version = "0.9.0", path = "../azalea-entity" } serde_json = "1.0.111" serde = "1.0.195" diff --git a/azalea-core/Cargo.toml b/azalea-core/Cargo.toml index c130aa789..e82c14703 100644 --- a/azalea-core/Cargo.toml +++ b/azalea-core/Cargo.toml @@ -9,7 +9,7 @@ version = "0.9.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = { version = "0.3", git = "https://github.com/azalea-rs/simdnbt" } +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" } @@ -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.6.1" +uuid = "^1.7.0" serde_json = "^1.0.111" tracing = "0.1.40" diff --git a/azalea-crypto/Cargo.toml b/azalea-crypto/Cargo.toml index e15374f97..a2b2834b3 100644 --- a/azalea-crypto/Cargo.toml +++ b/azalea-crypto/Cargo.toml @@ -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.6.1" +uuid = "^1.7.0" [dev-dependencies] criterion = { version = "^0.5.1", features = ["html_reports"] } diff --git a/azalea-entity/Cargo.toml b/azalea-entity/Cargo.toml index fe4671c75..fde1cbf34 100644 --- a/azalea-entity/Cargo.toml +++ b/azalea-entity/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = { version = "0.3", git = "https://github.com/azalea-rs/simdnbt" } +simdnbt = { version = "0.4", git = "https://github.com/azalea-rs/simdnbt" } azalea-block = { version = "0.9.0", path = "../azalea-block" } azalea-buf = { version = "0.9.0", path = "../azalea-buf" } azalea-chat = { version = "0.9.0", path = "../azalea-chat", features = [ @@ -27,4 +27,4 @@ tracing = "0.1.40" nohash-hasher = "0.2.0" parking_lot = "0.12.1" thiserror = "1.0.56" -uuid = "1.6.1" +uuid = "1.7.0" diff --git a/azalea-inventory/Cargo.toml b/azalea-inventory/Cargo.toml index b3c66eceb..aacbd4340 100644 --- a/azalea-inventory/Cargo.toml +++ b/azalea-inventory/Cargo.toml @@ -9,7 +9,7 @@ version = "0.9.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = { version = "0.3", git = "https://github.com/azalea-rs/simdnbt" } +simdnbt = { version = "0.4", git = "https://github.com/azalea-rs/simdnbt" } azalea-buf = { version = "0.9.0", path = "../azalea-buf" } azalea-inventory-macros = { version = "0.9.0", path = "./azalea-inventory-macros" } azalea-registry = { version = "0.9.0", path = "../azalea-registry" } diff --git a/azalea-inventory/azalea-inventory-macros/Cargo.toml b/azalea-inventory/azalea-inventory-macros/Cargo.toml index 337afc1d6..afdfe3979 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.76" +proc-macro2 = "1.0.78" quote = "1.0.35" syn = "2.0.48" diff --git a/azalea-physics/Cargo.toml b/azalea-physics/Cargo.toml index 6a4f7f209..dfadc9c53 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.6.1" +uuid = "^1.7.0" diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml index 945bf6c2d..080740b2e 100644 --- a/azalea-protocol/Cargo.toml +++ b/azalea-protocol/Cargo.toml @@ -9,7 +9,7 @@ version = "0.9.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = { version = "0.3", git = "https://github.com/azalea-rs/simdnbt" } +simdnbt = { version = "0.4", git = "https://github.com/azalea-rs/simdnbt" } async-recursion = "1.0.5" azalea-auth = { path = "../azalea-auth", version = "0.9.0" } azalea-block = { path = "../azalea-block", default-features = false, version = "0.9.0" } @@ -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.6.1" +uuid = "1.7.0" log = "0.4.20" [features] diff --git a/azalea-protocol/azalea-protocol-macros/Cargo.toml b/azalea-protocol/azalea-protocol-macros/Cargo.toml index 00e794a06..7d4bb3e26 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.76" +proc-macro2 = "^1.0.78" quote = "^1.0.35" syn = "^2.0.48" diff --git a/azalea-registry/Cargo.toml b/azalea-registry/Cargo.toml index 25dd09073..e1bae3afd 100644 --- a/azalea-registry/Cargo.toml +++ b/azalea-registry/Cargo.toml @@ -9,8 +9,7 @@ version = "0.9.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = { version = "0.3", git = "https://github.com/azalea-rs/simdnbt" } - +simdnbt = { version = "0.4", git = "https://github.com/azalea-rs/simdnbt" } azalea-buf = { path = "../azalea-buf", version = "0.9.0" } azalea-registry-macros = { path = "./azalea-registry-macros", version = "0.9.0" } once_cell = "1.19.0" diff --git a/azalea-registry/azalea-registry-macros/Cargo.toml b/azalea-registry/azalea-registry-macros/Cargo.toml index c15fc11ac..56d63bf96 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.76" +proc-macro2 = "1.0.78" quote = "1.0.35" syn = "2.0.48" diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml index 23c730b1d..e69b4b971 100644 --- a/azalea-world/Cargo.toml +++ b/azalea-world/Cargo.toml @@ -9,7 +9,7 @@ version = "0.9.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -simdnbt = { version = "0.3", git = "https://github.com/azalea-rs/simdnbt" } +simdnbt = { version = "0.4", git = "https://github.com/azalea-rs/simdnbt" } azalea-block = { path = "../azalea-block", default-features = false, version = "0.9.0" } azalea-buf = { path = "../azalea-buf", version = "0.9.0" } azalea-core = { path = "../azalea-core", version = "0.9.0", features = [ @@ -25,7 +25,7 @@ nohash-hasher = "0.2.0" once_cell = "1.19.0" parking_lot = "^0.12.1" thiserror = "1.0.56" -uuid = "1.6.1" +uuid = "1.7.0" serde_json = "1.0.111" serde = "1.0.195" diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml index e61433882..41803928a 100644 --- a/azalea/Cargo.toml +++ b/azalea/Cargo.toml @@ -39,7 +39,7 @@ parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] } priority-queue = "1.3.2" thiserror = "^1.0.56" tokio = "^1.35.1" -uuid = "1.6.1" +uuid = "1.7.0" bevy_log = "0.12.1" azalea-entity = { version = "0.9.0", path = "../azalea-entity" } bevy_time = "0.12.1"