aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/Cargo.toml
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2024-11-27 10:26:40 +0000
committermat <git@matdoes.dev>2024-11-27 10:26:40 +0000
commit0817382098128adcecb77756a3c7cd1bd0066057 (patch)
tree623d9b297f9b5fdb2af74ab3c5a4fa5c1b72ff5b /azalea-protocol/Cargo.toml
parentdfdc3144b61b6750ad62fb493b7c00c6c820c90b (diff)
downloadazalea-drasl-0817382098128adcecb77756a3c7cd1bd0066057.tar.xz
replace once_cell with std:;sync::LazyLock
Diffstat (limited to 'azalea-protocol/Cargo.toml')
-rw-r--r--azalea-protocol/Cargo.toml14
1 files changed, 10 insertions, 4 deletions
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml
index 1e32d71d..4ed5081b 100644
--- a/azalea-protocol/Cargo.toml
+++ b/azalea-protocol/Cargo.toml
@@ -12,10 +12,17 @@ version = "0.10.3+mc1.21.1"
async-recursion = { workspace = true }
azalea-auth = { path = "../azalea-auth", version = "0.10.0" }
azalea-block = { path = "../azalea-block", default-features = false, version = "0.10.0" }
-azalea-brigadier = { path = "../azalea-brigadier", version = "0.10.0", features = ["azalea-buf"] }
+azalea-brigadier = { path = "../azalea-brigadier", version = "0.10.0", features = [
+ "azalea-buf",
+] }
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-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" }
@@ -48,6 +55,5 @@ packets = ["connecting", "dep:azalea-core"]
[dev-dependencies]
anyhow = { workspace = true }
-once_cell = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }