mirror of
https://github.com/italicsjenga/valence.git
synced 2024-12-23 22:41:30 +11:00
1ceafe0ce0
This PR aims to add block entities. Fixes #5 --------- Co-authored-by: Ryan Johnson <ryanj00a@gmail.com>
22 lines
653 B
TOML
22 lines
653 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/tree/main/valence_nbt"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
keywords = ["nbt", "minecraft", "serialization"]
|
|
version = "0.5.0"
|
|
authors = ["Ryan Johnson <ryanj00a@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
byteorder = "1.4.3"
|
|
cesu8 = "1.1.0"
|
|
indexmap = { version = "1.9.1", optional = true }
|
|
uuid = { version = "1.1.2", optional = true }
|
|
|
|
[features]
|
|
# When enabled, the order of fields in compounds are preserved.
|
|
preserve_order = ["dep:indexmap"]
|