mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-04-20 03:25:09 +02:00
Clean up dependency features
This commit is contained in:
parent
708fb9645d
commit
5c85687554
3 changed files with 3 additions and 5 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -296,7 +296,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ba2f4b465f5318854c6f8dd686ede6c0a9dc67d4b1ac241cf0eb51521a309147"
|
checksum = "ba2f4b465f5318854c6f8dd686ede6c0a9dc67d4b1ac241cf0eb51521a309147"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"enumflags2_derive",
|
"enumflags2_derive",
|
||||||
"serde",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -514,7 +513,6 @@ checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"equivalent",
|
"equivalent",
|
||||||
"hashbrown",
|
"hashbrown",
|
||||||
"serde",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
|
@ -47,7 +47,7 @@ futures-util = "0.3.28"
|
||||||
git-version = "0.3.5"
|
git-version = "0.3.5"
|
||||||
humantime = "2.1.0"
|
humantime = "2.1.0"
|
||||||
image = { version = "0.25.1", default-features = false, features = ["png", "webp"] }
|
image = { version = "0.25.1", default-features = false, features = ["png", "webp"] }
|
||||||
indexmap = { version = "2.0.0", features = ["serde"] }
|
indexmap = "2.0.0"
|
||||||
lru = "0.13.0"
|
lru = "0.13.0"
|
||||||
minedmap-default-alloc = { version = "0.1.0", path = "crates/default-alloc", optional = true }
|
minedmap-default-alloc = { version = "0.1.0", path = "crates/default-alloc", optional = true }
|
||||||
minedmap-nbt = { version = "0.1.1", path = "crates/nbt", default-features = false }
|
minedmap-nbt = { version = "0.1.1", path = "crates/nbt", default-features = false }
|
||||||
|
@ -60,7 +60,7 @@ phf = { version = "0.11.2", features = ["macros"] }
|
||||||
rayon = "1.7.0"
|
rayon = "1.7.0"
|
||||||
regex = "1.10.2"
|
regex = "1.10.2"
|
||||||
rustc-hash = "2.0.0"
|
rustc-hash = "2.0.0"
|
||||||
serde = { version = "1.0.152", features = ["rc", "derive"] }
|
serde = { version = "1.0.152", features = ["derive"] }
|
||||||
serde_json = "1.0.99"
|
serde_json = "1.0.99"
|
||||||
tokio = { version = "1.31.0", features = ["rt", "parking_lot", "sync"] }
|
tokio = { version = "1.31.0", features = ["rt", "parking_lot", "sync"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
|
|
|
@ -9,5 +9,5 @@ repository.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bincode = "2.0.1"
|
bincode = "2.0.1"
|
||||||
enumflags2 = { version = "0.7.7", features = ["serde"] }
|
enumflags2 = "0.7.7"
|
||||||
glam = "0.30.0"
|
glam = "0.30.0"
|
||||||
|
|
Loading…
Add table
Reference in a new issue