Files
RustAst/Cargo.toml
T
Michael Schimmel b6d1d41c8b 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`.
2026-02-18 16:00:21 +01:00

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"