azalea/azalea-buf/Cargo.toml

22 lines
595 B
TOML
Raw Normal View History

2022-06-23 20:12:17 +00:00
[package]
description = "Serialize and deserialize buffers from Minecraft."
2022-06-23 20:12:17 +00:00
edition = "2021"
license = "MIT"
2022-06-23 20:28:46 +00:00
name = "azalea-buf"
2023-10-08 08:58:57 +00:00
repository = "https://github.com/azalea-rs/azalea/tree/main/azalea-buf"
version = "0.10.2"
2022-06-23 20:12:17 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-07-05 05:45:45 +00:00
simdnbt = "0.6"
azalea-buf-macros = { path = "./azalea-buf-macros", version = "0.10.0" }
2023-11-07 00:04:48 +00:00
byteorder = "^1.5.0"
2023-11-18 06:58:47 +00:00
tracing = "0.1.40"
2023-05-17 04:47:54 +00:00
serde_json = { version = "^1.0", optional = true }
2024-07-05 05:45:45 +00:00
thiserror = "1.0.61"
uuid = "^1.9.1"
[features]
serde_json = ["dep:serde_json"]