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 Co-authored-by: BuildTools <unconfigured@null.spigotmc.org> Co-authored-by: mat <github@matdoes.dev>
16 lines
563 B
TOML
Executable file
16 lines
563 B
TOML
Executable file
[package]
|
|
description = "Parse Minecraft chat messages."
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "azalea-chat"
|
|
repository = "https://github.com/mat-1/azalea/tree/main/azalea-chat"
|
|
version = "0.4.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
azalea-buf = {path = "../azalea-buf", features = ["serde_json"], version = "^0.4.0"}
|
|
azalea-language = {path = "../azalea-language", version = "^0.4.0"}
|
|
once_cell = "1.16.0"
|
|
serde = {version = "^1.0.148", features = ["derive"]}
|
|
serde_json = "^1.0.72"
|