2023-08-20 16:28:10 +02:00
|
|
|
[package]
|
|
|
|
name = "minedmap-nbt"
|
|
|
|
version = "0.1.0"
|
2023-08-21 19:10:54 +02:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
2023-08-20 16:28:10 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.75"
|
|
|
|
bytemuck = "1.13.1"
|
|
|
|
fastnbt = "2.4.4"
|
|
|
|
flate2 = "1.0.27"
|
|
|
|
minedmap-types = { version = "0.1.0", path = "../types" }
|
|
|
|
serde = "1.0.183"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
zlib-ng = ["flate2/zlib-ng"]
|
2023-08-21 15:01:48 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
clap = { version = "4.3.23", features = ["derive"] }
|