diff --git a/Cargo.lock b/Cargo.lock index a8623ed..7936074 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,9 +89,9 @@ dependencies = [ [[package]] name = "lazy_static" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" diff --git a/compiler/Cargo.toml b/compiler/Cargo.toml index 1b94e72..62ee266 100644 --- a/compiler/Cargo.toml +++ b/compiler/Cargo.toml @@ -17,7 +17,7 @@ name = "monkey-compiler" path = "main.rs" [dependencies] -lazy_static = "1.4.0" +lazy_static = "1.5.0" byteorder = "1.5.0" strum = { version = "0.25.0", features = ["derive"]} strum_macros = "0.26" diff --git a/object/Cargo.toml b/object/Cargo.toml index 834d507..b23508f 100644 --- a/object/Cargo.toml +++ b/object/Cargo.toml @@ -15,7 +15,7 @@ name = "object" path= "object.rs" [dependencies] -lazy_static = "1.4.0" +lazy_static = "1.5.0" monkey-parser = { path = "../parser", version = "0.9.1" } [dev-dependencies]