From 882a084377e1a1a727d30a47dcb3151950f36ee4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 05:54:27 +0000 Subject: [PATCH] Bump enum-as-inner from 0.6.1 to 0.7.0 Bumps [enum-as-inner](https://github.com/bluejekyll/enum-as-inner) from 0.6.1 to 0.7.0. - [Changelog](https://github.com/bluejekyll/enum-as-inner/blob/main/CHANGELOG.md) - [Commits](https://github.com/bluejekyll/enum-as-inner/commits) --- updated-dependencies: - dependency-name: enum-as-inner dependency-version: 0.7.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- compiler-lib/Cargo.toml | 2 +- opcodes-lib/Cargo.toml | 2 +- test-bin/Cargo.toml | 2 +- vm-lib/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9b1bfb72..e7e50374 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -734,9 +734,9 @@ dependencies = [ [[package]] name = "enum-as-inner" -version = "0.6.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" +checksum = "0359ee92f81184d7985519e474bda2a5738476334edd3746c9b1265c067afe70" dependencies = [ "heck", "proc-macro2", diff --git a/compiler-lib/Cargo.toml b/compiler-lib/Cargo.toml index f1e7e2ab..fa673222 100644 --- a/compiler-lib/Cargo.toml +++ b/compiler-lib/Cargo.toml @@ -12,6 +12,6 @@ pest = "2.8.5" pest_derive = "2.8.5" opcodes-lib = { path = "../opcodes-lib" } parser-lib = { path = "../parser-lib" } -enum-as-inner = "0.6.1" +enum-as-inner = "0.7.0" thiserror = "2.0.18" lazy_static = "1.5.0" diff --git a/opcodes-lib/Cargo.toml b/opcodes-lib/Cargo.toml index be4f8739..ce6086aa 100644 --- a/opcodes-lib/Cargo.toml +++ b/opcodes-lib/Cargo.toml @@ -8,4 +8,4 @@ name = "haxby_opcodes" path = "src/lib.rs" [dependencies] -enum-as-inner = "0.6.1" +enum-as-inner = "0.7.0" diff --git a/test-bin/Cargo.toml b/test-bin/Cargo.toml index e7a8c531..a472bdc4 100644 --- a/test-bin/Cargo.toml +++ b/test-bin/Cargo.toml @@ -13,7 +13,7 @@ compiler-lib = { path = "../compiler-lib" } vm-lib = { path = "../vm-lib" } regex = "1.12.2" once_cell = "1.21.3" -enum-as-inner = "0.6.1" +enum-as-inner = "0.7.0" [[bin]] name = "test" diff --git a/vm-lib/Cargo.toml b/vm-lib/Cargo.toml index 01237ec3..add093e3 100644 --- a/vm-lib/Cargo.toml +++ b/vm-lib/Cargo.toml @@ -13,7 +13,7 @@ pest_derive = "2.8.5" parser-lib = { path = "../parser-lib" } compiler-lib = { path = "../compiler-lib" } opcodes-lib = { path = "../opcodes-lib" } -enum-as-inner = "0.6.1" +enum-as-inner = "0.7.0" thiserror = "2.0.18" libloading = "0.9.0" libc = "0.2.180"