1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00
azalea/azalea-chat/src/lib.rs
mat 619984fa33
Replace lazy_static with once_cell::sync::Lazy (#43)
* Remove lazy_static in azalea-chat

* replace lazy_static with once_cell everywhere

* fix

* fix import

* ignore a clippy warning in shape codegen
2022-11-19 15:21:54 -06:00

10 lines
251 B
Rust
Executable file

//! Things for working with Minecraft chat messages.
//! This was inspired by Minecraft and prismarine-chat.
pub mod base_component;
mod component;
pub mod style;
pub mod text_component;
pub mod translatable_component;
pub use component::Component;