2023-08-20 16:28:10 +02:00
|
|
|
[package]
|
|
|
|
name = "minedmap-nbt"
|
2024-01-07 22:26:10 +01:00
|
|
|
version = "0.1.1"
|
2023-08-21 21:50:32 +02:00
|
|
|
description = "MinedMap's handling of Minecraft NBT data and region files"
|
2023-08-21 19:10:54 +02:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-08-21 21:50:32 +02:00
|
|
|
readme.workspace = true
|
2023-08-21 19:10:54 +02:00
|
|
|
repository.workspace = true
|
2023-08-20 16:28:10 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.75"
|
|
|
|
bytemuck = "1.13.1"
|
|
|
|
fastnbt = "2.4.4"
|
2025-02-28 12:12:58 +01:00
|
|
|
flate2 = "1.1.0"
|
2025-01-11 01:53:05 +01:00
|
|
|
minedmap-types = { version = "0.1.4", path = "../types" }
|
2023-08-20 16:28:10 +02:00
|
|
|
serde = "1.0.183"
|
|
|
|
|
2023-08-21 15:01:48 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
clap = { version = "4.3.23", features = ["derive"] }
|
2025-02-28 12:12:58 +01:00
|
|
|
flate2 = { version = "1.1.0", features = ["zlib-rs"] }
|