b6d1d41c8b
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`.
12 lines
192 B
TOML
12 lines
192 B
TOML
[package]
|
|
name = "myc"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
default-run = "myc"
|
|
|
|
[dependencies]
|
|
eframe = "0.33.3"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
chrono = "0.4"
|
|
regex = "1.10"
|