mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
37 lines
894 B
TOML
37 lines
894 B
TOML
[package]
|
|
description = "A fast NBT serializer and deserializer."
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "azalea-nbt"
|
|
version = "0.8.0"
|
|
repository = "https://github.com/azalea-rs/azalea/tree/main/azalea-nbt"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
azalea-buf = { path = "../azalea-buf", version = "0.8.0" }
|
|
byteorder = "^1.5.0"
|
|
compact_str = { version = "0.7.1", features = ["serde"] }
|
|
enum-as-inner = "0.6.0"
|
|
flate2 = "^1.0.28"
|
|
tracing = "0.1.40"
|
|
serde = { version = "^1.0", features = ["derive"], optional = true }
|
|
thiserror = "1.0.50"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "^0.5.1", features = ["html_reports"] }
|
|
graphite_binary = "0.1.0"
|
|
valence_nbt = "0.8.0"
|
|
fastnbt = "2.4.4"
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["dep:serde"]
|
|
|
|
[[bench]]
|
|
harness = false
|
|
name = "nbt"
|
|
|
|
[[bench]]
|
|
harness = false
|
|
name = "compare"
|