Replace lazy_static with OnceLock

This commit replaces the `lazy_static` crate with `std::sync::OnceLock`.
This removes an external dependency and utilizes a standard library
feature for lazy initialization.

Additionally, a benchmark regression test has been added to
`src/ast/tester.rs`.
This commit is contained in:
Michael Schimmel
2026-02-18 16:00:21 +01:00
parent 76586c0903
commit b6d1d41c8b
4 changed files with 48 additions and 21 deletions
-1
View File
@@ -6,7 +6,6 @@ default-run = "myc"
[dependencies]
eframe = "0.33.3"
lazy_static = "1.4.0"
clap = { version = "4.5", features = ["derive"] }
chrono = "0.4"
regex = "1.10"