From 81548d0ed86527c4e3c2f968b0f84191cee4530a Mon Sep 17 00:00:00 2001 From: limuy Date: Wed, 7 Feb 2024 00:39:57 +0800 Subject: [PATCH] s --- rust/src/cfg.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/rust/src/cfg.rs b/rust/src/cfg.rs index 2c7ecce2..cf80d192 100644 --- a/rust/src/cfg.rs +++ b/rust/src/cfg.rs @@ -1,10 +1,6 @@ //! some constant values and configurations in trc -use lazy_static::lazy_static; - pub const MAIN_MODULE_NAME: &str = "main"; pub const FLOAT_OVER_FLOW_LIMIT: usize = 18; pub const VERSION: &str = "0.1.0"; -lazy_static! { - pub static ref VERSION_DESTRUCT: (u8, u8, u8) = (0, 1, 0); -} +pub static VERSION_DESTRUCT: (u8, u8, u8) = (0, 1, 0);