mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-03-04 17:23:33 +01:00
zlib-rs provides the same performance as zlib-ng with minedmap, while reducing the amount of C code and avoiding the external build dependency on CMake.
20 lines
520 B
TOML
20 lines
520 B
TOML
[package]
|
|
name = "minedmap-nbt"
|
|
version = "0.1.1"
|
|
description = "MinedMap's handling of Minecraft NBT data and region files"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
bytemuck = "1.13.1"
|
|
fastnbt = "2.4.4"
|
|
flate2 = "1.1.0"
|
|
minedmap-types = { version = "0.1.4", path = "../types" }
|
|
serde = "1.0.183"
|
|
|
|
[dev-dependencies]
|
|
clap = { version = "4.3.23", features = ["derive"] }
|
|
flate2 = { version = "1.1.0", features = ["zlib-rs"] }
|