mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 06:16:04 +00:00
remove unused deps
This commit is contained in:
parent
f0c7d6e8bf
commit
a985cc7442
5 changed files with 2 additions and 28 deletions
25
Cargo.lock
generated
25
Cargo.lock
generated
|
@ -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",
|
||||
|
@ -1690,12 +1685,6 @@ version = "0.2.147"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
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"
|
||||
|
@ -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]]
|
||||
|
@ -1942,16 +1931,6 @@ version = "0.1.1"
|
|||
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"
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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" }
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue