diff options
| -rw-r--r-- | Cargo.lock | 25 | ||||
| -rw-r--r-- | azalea-auth/Cargo.toml | 1 | ||||
| -rw-r--r-- | azalea-core/Cargo.toml | 1 | ||||
| -rw-r--r-- | azalea-nbt/Cargo.toml | 1 | ||||
| -rw-r--r-- | azalea-world/Cargo.toml | 2 |
5 files changed, 2 insertions, 28 deletions
@@ -213,7 +213,6 @@ dependencies = [ "log", "num-bigint", "once_cell", - "parking_lot", "reqwest", "rsa", "serde", @@ -324,7 +323,6 @@ name = "azalea-core" version = "0.7.0" dependencies = [ "azalea-buf", - "azalea-chat", "azalea-inventory", "azalea-nbt", "azalea-registry", @@ -415,7 +413,6 @@ dependencies = [ "flate2", "graphite_binary", "log", - "packed_simd_2", "serde", "valence_nbt", ] @@ -512,13 +509,11 @@ version = "0.7.0" dependencies = [ "azalea-block", "azalea-buf", - "azalea-chat", "azalea-client", "azalea-core", "azalea-inventory", "azalea-nbt", "azalea-registry", - "bevy_app", "bevy_ecs", "derive_more", "enum-as-inner 0.6.0", @@ -1692,12 +1687,6 @@ checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" [[package]] name = "libm" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fc7aa29613bd6a620df431842069224d8bc9011086b1db4c0e0cd47fa03ec9a" - -[[package]] -name = "libm" version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" @@ -1844,7 +1833,7 @@ checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" dependencies = [ "byteorder", "lazy_static", - "libm 0.2.7", + "libm", "num-integer", "num-iter", "num-traits", @@ -1902,7 +1891,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" dependencies = [ "autocfg", - "libm 0.2.7", + "libm", ] [[package]] @@ -1943,16 +1932,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] -name = "packed_simd_2" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1914cd452d8fccd6f9db48147b29fd4ae05bea9dc5d9ad578509f72415de282" -dependencies = [ - "cfg-if", - "libm 0.1.4", -] - -[[package]] name = "parking" version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml index 82982e8e..b971b965 100644 --- a/azalea-auth/Cargo.toml +++ b/azalea-auth/Cargo.toml @@ -16,7 +16,6 @@ chrono = { version = "0.4.26", default-features = false, features = ["serde"] } log = "0.4.19" num-bigint = "0.4.3" once_cell = "1.18.0" -parking_lot = "0.12.1" reqwest = { version = "0.11.18", default-features = false, features = [ "json", "rustls-tls", diff --git a/azalea-core/Cargo.toml b/azalea-core/Cargo.toml index 99725414..50cc1541 100644 --- a/azalea-core/Cargo.toml +++ b/azalea-core/Cargo.toml @@ -10,7 +10,6 @@ version = "0.7.0" [dependencies] azalea-buf = { path = "../azalea-buf", version = "^0.7.0" } -azalea-chat = { path = "../azalea-chat", version = "^0.7.0" } azalea-inventory = { version = "0.7.0", path = "../azalea-inventory" } azalea-nbt = { path = "../azalea-nbt", version = "^0.7.0" } azalea-registry = { path = "../azalea-registry", version = "^0.7.0" } diff --git a/azalea-nbt/Cargo.toml b/azalea-nbt/Cargo.toml index bfbc6c5d..86cf7a9d 100644 --- a/azalea-nbt/Cargo.toml +++ b/azalea-nbt/Cargo.toml @@ -15,7 +15,6 @@ compact_str = { version = "0.7.1", features = ["serde"] } enum-as-inner = "0.6.0" flate2 = "^1.0.26" log = "0.4.19" -packed_simd_2 = "0.3.8" serde = { version = "^1.0", features = ["derive"], optional = true } [dev-dependencies] diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml index 9f3ea8ee..fad620fa 100644 --- a/azalea-world/Cargo.toml +++ b/azalea-world/Cargo.toml @@ -11,14 +11,12 @@ version = "0.7.0" [dependencies] azalea-block = { path = "../azalea-block", default-features = false, version = "^0.7.0" } azalea-buf = { path = "../azalea-buf", version = "^0.7.0" } -azalea-chat = { path = "../azalea-chat", version = "^0.7.0" } azalea-core = { path = "../azalea-core", version = "^0.7.0", features = [ "bevy_ecs", ] } azalea-inventory = { version = "0.7.0", path = "../azalea-inventory" } azalea-nbt = { path = "../azalea-nbt", version = "^0.7.0" } azalea-registry = { path = "../azalea-registry", version = "^0.7.0" } -bevy_app = "0.11.0" bevy_ecs = "0.11.0" derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] } enum-as-inner = "0.6.0" |
