valence/valence_nbt/Cargo.toml
Ryan Johnson 9c62bc1b90
Move valence_nbt to main Valence repo. (#97)
This also adds another check in CI
2022-10-01 14:18:42 -07:00

22 lines
608 B
TOML

[package]
name = "valence_nbt"
description = "A library for Minecraft's Named Binary Tag (NBT) format."
documentation = "https://docs.rs/valence_nbt/"
repository = "https://github.com/valence-rs/valence_nbt"
readme = "README.md"
license = "MIT"
keywords = ["nbt", "minecraft", "serialization"]
version = "0.1.2"
authors = ["Ryan Johnson <ryanj00a@gmail.com>"]
edition = "2021"
[dependencies]
byteorder = "1.4.3"
cesu8 = "1.1.0"
indexmap = { version = "1.9.1", optional = true }
zerocopy = "0.6.1"
[features]
# When enabled, the order of fields in compounds are preserved.
preserve_order = ["dep:indexmap"]