aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2023-03-21 18:07:40 +0000
committermat <github@matdoes.dev>2023-03-21 18:07:40 +0000
commit157ac224616f8543c3fc050af99863527b5f1873 (patch)
treea32597fb7c525165c1292c9bbaf1fb40d40c739f
parent4865b772f641711c166fc49256a710d6624d163c (diff)
downloadazalea-drasl-157ac224616f8543c3fc050af99863527b5f1873.tar.xz
remove unused dependencies
thanks cargo-udeps
-rw-r--r--Cargo.lock23
-rw-r--r--azalea-buf/Cargo.toml1
-rw-r--r--azalea-client/Cargo.toml1
-rw-r--r--azalea-core/Cargo.toml3
-rw-r--r--azalea-nbt/Cargo.toml2
-rw-r--r--azalea-registry/Cargo.toml1
6 files changed, 1 insertions, 30 deletions
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",
]
@@ -1605,17 +1599,6 @@ dependencies = [
]
[[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"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2465,12 +2448,6 @@ 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"
source = "registry+https://github.com/rust-lang/crates.io-index"
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]