MinedMap/Cargo.toml
Matthias Schiffer fb712cd2f5
Store per-region biome list in IndexSet
Index into the biome list instead of duplicating the biome data for each
coordinate. This reduces the size of the processed data and speeds up
encoding/decoding.
2023-08-03 23:07:16 +02:00

29 lines
694 B
TOML

[package]
name = "minedmap"
version = "0.1.0"
edition = "2021"
license = "MIT"
default-run = "minedmap"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.68"
bincode = "1.3.3"
bytemuck = "1.13.0"
clap = { version = "4.1.4", features = ["derive"] }
enumflags2 = "0.7.5"
fastnbt = "2.3.2"
flate2 = "1.0.25"
glam = "0.24.0"
image = { version = "0.24.5", default-features = false, features = ["png"] }
indexmap = { version = "2.0.0", features = ["serde"] }
itertools = "0.11.0"
num-integer = "0.1.45"
serde = "1.0.152"
serde_json = "1.0.99"
zstd = "0.12.3"
[features]
default = ["zlib-ng"]
zlib-ng = ["flate2/zlib-ng"]