mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
* Serializing ClientboundStatusResponsePacket Enable serialization of ClientboundStatusResponsePacket * Update clientbound_status_response_packet.rs Add options previewsChat and enforcesSecureChat * Serialize Style and TextColor * Serialize BaseComponent * Serialize TextComponent * Fix Style * Serialize Component * Fix multiple formats per message, fix reset tag * Fix Style, again * Use FlatMapSerializer * Forgot italics * Count struct fields, reorganize logic * Serialize TranslatableComponent * Rewrite TextComponent Serializer * Fix using TextColor::Parse * Code Cleanup * Add default attribute, just in case * Clippy * use serde derive feature + preferred formatting choices * McBufWritable for BrigadierNodeStub * Thanks Clippy... * Implement suggestions in azalea-brigadier * Serde support for NBT Tags * Serde options * Forgot Options * Oops, that's McBufWritable for BrigadierParser * Fix McBufWritable for SlotData * Complete ClientboundUpdateRecipesPacket * fix some issues * better impl McBufReadable for Suggestions Co-authored-by: BuildTools <unconfigured@null.spigotmc.org> Co-authored-by: mat <github@matdoes.dev>
32 lines
775 B
TOML
Executable file
32 lines
775 B
TOML
Executable file
[package]
|
|
description = "A fast NBT serializer and deserializer."
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "azalea-nbt"
|
|
version = "0.4.0"
|
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea-nbt"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ahash = { version = "^0.8.0", features = ["serde"]}
|
|
azalea-buf = {path = "../azalea-buf", version = "^0.4.0" }
|
|
byteorder = "^1.4.3"
|
|
flate2 = "^1.0.23"
|
|
log = "0.4.17"
|
|
num-derive = "^0.3.3"
|
|
num-traits = "^0.2.14"
|
|
serde = {version = "^1.0.148", features = ["derive"]}
|
|
|
|
[dev-dependencies]
|
|
criterion = {version = "^0.3.5", features = ["html_reports"]}
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|
|
[profile.bench]
|
|
debug = true
|
|
|
|
[[bench]]
|
|
harness = false
|
|
name = "my_benchmark"
|