diff --git a/Cargo.lock b/Cargo.lock index 412ee2bc..d46fe94e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -254,7 +254,6 @@ dependencies = [ "log", "serde_json", "thiserror", - "tokio", "uuid", ] @@ -308,7 +307,6 @@ dependencies = [ "regex", "thiserror", "tokio", - "typemap_rev", "uuid", ] @@ -317,7 +315,6 @@ name = "azalea-core" version = "0.6.0" dependencies = [ "azalea-buf", - "azalea-chat", "azalea-nbt", "bevy_ecs", "serde", @@ -358,8 +355,6 @@ dependencies = [ "criterion", "flate2", "log", - "num-derive", - "num-traits", "serde", ] @@ -431,7 +426,6 @@ version = "0.6.0" dependencies = [ "azalea-buf", "azalea-registry-macros", - "enum-as-inner", "serde", ] @@ -1604,17 +1598,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "num-derive" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "num-integer" version = "0.1.45" @@ -2464,12 +2447,6 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" -[[package]] -name = "typemap_rev" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74b08b0c1257381af16a5c3605254d529d3e7e109f3c62befc5d168968192998" - [[package]] name = "typenum" version = "1.16.0" diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml index ac878a4f..b687d252 100644 --- a/azalea-buf/Cargo.toml +++ b/azalea-buf/Cargo.toml @@ -14,7 +14,6 @@ byteorder = "^1.4.3" log = "0.4.17" serde_json = {version = "^1.0", optional = true} thiserror = "1.0.37" -tokio = {version = "^1.24.2", features = ["io-util", "net", "macros"]} uuid = "^1.1.2" [features] diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml index f25aa290..6bc07def 100644 --- a/azalea-client/Cargo.toml +++ b/azalea-client/Cargo.toml @@ -34,5 +34,4 @@ parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] } regex = "1.7.0" thiserror = "^1.0.34" tokio = { version = "^1.24.2", features = ["sync"] } -typemap_rev = "0.3.0" uuid = "^1.1.2" diff --git a/azalea-core/Cargo.toml b/azalea-core/Cargo.toml index 8b92e845..0193a3b0 100644 --- a/azalea-core/Cargo.toml +++ b/azalea-core/Cargo.toml @@ -10,7 +10,6 @@ version = "0.6.0" [dependencies] azalea-buf = { path = "../azalea-buf", version = "^0.6.0" } -azalea-chat = { path = "../azalea-chat", version = "^0.6.0" } azalea-nbt = { path = "../azalea-nbt", version = "^0.6.0" } bevy_ecs = { version = "0.10.0", default-features = false, optional = true } serde = {version = "^1.0.152", optional = true} @@ -18,4 +17,4 @@ uuid = "^1.1.2" [features] bevy_ecs = ["dep:bevy_ecs"] -serde = ["dep:serde"] \ No newline at end of file +serde = ["dep:serde"] diff --git a/azalea-nbt/Cargo.toml b/azalea-nbt/Cargo.toml index 007da55a..f0938168 100644 --- a/azalea-nbt/Cargo.toml +++ b/azalea-nbt/Cargo.toml @@ -14,8 +14,6 @@ azalea-buf = { path = "../azalea-buf", version = "^0.6.0" } byteorder = "^1.4.3" flate2 = "^1.0.25" log = "0.4.17" -num-derive = "^0.3.3" -num-traits = "^0.2.15" serde = { version = "1.0.152", features = ["derive"], optional = true } [dev-dependencies] diff --git a/azalea-registry/Cargo.toml b/azalea-registry/Cargo.toml index 743399a0..b2f1460b 100644 --- a/azalea-registry/Cargo.toml +++ b/azalea-registry/Cargo.toml @@ -11,7 +11,6 @@ version = "0.6.0" [dependencies] azalea-buf = { path = "../azalea-buf", version = "^0.6.0" } azalea-registry-macros = { path = "./azalea-registry-macros", version = "^0.6.0" } -enum-as-inner = "0.5.1" serde = { version = "1.0.155", optional = true } [features]