diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-01-22 22:38:33 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-01-22 22:38:33 +0100 |
| commit | 9660a01f4bcc514b70fe83fb64dc91659cf2bfa2 (patch) | |
| tree | 0016f91998e891908adebef3d8f81ef67600f87c /lib/xixanta/src/lib.rs | |
| parent | 5d06ba11c981430aca68f2ea31771fca7f18529b (diff) | |
| download | tools.nes-9660a01f4bcc514b70fe83fb64dc91659cf2bfa2.tar.gz tools.nes-9660a01f4bcc514b70fe83fb64dc91659cf2bfa2.zip | |
Drop lazy_static dependency
Apparently the standard library had LazyLock which is enough for what I
wanted to achieve with lazy_static.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'lib/xixanta/src/lib.rs')
| -rw-r--r-- | lib/xixanta/src/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/xixanta/src/lib.rs b/lib/xixanta/src/lib.rs index 6f1fc86..8515e23 100644 --- a/lib/xixanta/src/lib.rs +++ b/lib/xixanta/src/lib.rs @@ -1,6 +1,3 @@ -#[macro_use] -extern crate lazy_static; - /// Information for a file that has been parsed/assembled. #[derive(Clone, Debug, PartialEq)] pub struct SourceInfo { |
