From 619984fa33aec8b9629770928c51ee81a3d3a63f Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sat, 19 Nov 2022 15:21:54 -0600 Subject: 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 --- azalea-chat/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'azalea-chat/src/lib.rs') diff --git a/azalea-chat/src/lib.rs b/azalea-chat/src/lib.rs index 01f718eb..fd26ee4f 100755 --- a/azalea-chat/src/lib.rs +++ b/azalea-chat/src/lib.rs @@ -1,9 +1,6 @@ //! Things for working with Minecraft chat messages. //! This was inspired by Minecraft and prismarine-chat. -#[macro_use] -extern crate lazy_static; - pub mod base_component; mod component; pub mod style; -- cgit v1.2.3