2022-10-02 08:18:42 +11:00
|
|
|
[package]
|
|
|
|
name = "valence_nbt"
|
|
|
|
description = "A library for Minecraft's Named Binary Tag (NBT) format."
|
|
|
|
documentation = "https://docs.rs/valence_nbt/"
|
2022-10-02 09:38:14 +11:00
|
|
|
repository = "https://github.com/valence-rs/valence/tree/main/valence_nbt"
|
2022-10-02 08:18:42 +11:00
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["nbt", "minecraft", "serialization"]
|
2022-12-16 13:38:52 +11:00
|
|
|
version = "0.5.0"
|
2022-10-02 08:18:42 +11:00
|
|
|
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"]
|