MinedMap/Cargo.toml

30 lines
694 B
TOML
Raw Normal View History

2023-01-24 18:52:44 +01:00
[package]
name = "minedmap"
version = "0.1.0"
edition = "2021"
license = "MIT"
default-run = "minedmap"
2023-01-24 18:52:44 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-01-24 20:39:54 +01:00
anyhow = "1.0.68"
bincode = "1.3.3"
bytemuck = "1.13.0"
2023-01-24 20:39:54 +01:00
clap = { version = "4.1.4", features = ["derive"] }
enumflags2 = "0.7.5"
2023-01-24 20:39:54 +01:00
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"] }
2023-07-01 23:05:39 +02:00
itertools = "0.11.0"
num-integer = "0.1.45"
2023-01-25 19:08:23 +01:00
serde = "1.0.152"
serde_json = "1.0.99"
zstd = "0.12.3"
[features]
default = ["zlib-ng"]
zlib-ng = ["flate2/zlib-ng"]