[package]
edition = "2021"
rust-version = "1.85"
name = "nbt-rust"
version = "0.1.1"
authors = ["ClexaGod"]
build = false
include = [
"Cargo.toml",
"README.md",
"LICENSE*",
"src/**",
"benches/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, idiomatic NBT library for Rust with Bedrock and Java endian variants."
homepage = "https://github.com/mcbe-rs/nbt-rust"
documentation = "https://docs.rs/nbt-rust/latest/nbt_rust/"
readme = "README.md"
keywords = [
"nbt",
"minecraft",
"bedrock",
"serialization",
"binary",
]
categories = [
"encoding",
"parser-implementations",
"game-development",
]
license = "Apache-2.0"
repository = "https://github.com/mcbe-rs/nbt-rust"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "nbt_rust"
path = "src/lib.rs"
[[test]]
name = "p2_fixture_compat_integration"
path = "tests/p2_fixture_compat_integration.rs"
[[test]]
name = "p3_pathological_fixture_regression"
path = "tests/p3_pathological_fixture_regression.rs"
[[bench]]
name = "nbt_throughput"
path = "benches/nbt_throughput.rs"
harness = false
[dependencies.byteorder]
version = "1.5"
[dependencies.indexmap]
version = "2.7"
[dependencies.paste]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde-value]
version = "0.7"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"