From 0f509d80be75fac769d8a842453de291feed31f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Nov 2024 06:25:45 +0000 Subject: [PATCH] Update cranelift-entity requirement from 0.112 to 0.114 --- updated-dependencies: - dependency-name: cranelift-entity dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/codegen/Cargo.toml | 2 +- crates/interpreter/Cargo.toml | 2 +- crates/ir/Cargo.toml | 2 +- crates/parser/Cargo.toml | 2 +- crates/verifier/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/codegen/Cargo.toml b/crates/codegen/Cargo.toml index 3e6a6ce8..dc98b1e5 100644 --- a/crates/codegen/Cargo.toml +++ b/crates/codegen/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["compiler", "evm", "wasm", "smart-contract"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cranelift-entity = "0.112" +cranelift-entity = "0.114" smallvec = "1.7.0" rustc-hash = "2.0.0" sonatina-ir = { path = "../ir", version = "0.0.3-alpha" } diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 088aa0b0..5ff0bbeb 100644 --- a/crates/interpreter/Cargo.toml +++ b/crates/interpreter/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["compiler", "evm", "wasm", "smart-contract"] [dependencies] byteorder = "1.5.0" -cranelift-entity = "0.112" +cranelift-entity = "0.114" sonatina-ir = { path = "../ir", version = "0.0.3-alpha" } [dev-dependencies] diff --git a/crates/ir/Cargo.toml b/crates/ir/Cargo.toml index dc33ba80..2ebefba7 100644 --- a/crates/ir/Cargo.toml +++ b/crates/ir/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["compiler", "evm", "wasm", "smart-contract"] [dependencies] primitive-types = { version = "0.13", default-features = false } -cranelift-entity = "0.112" +cranelift-entity = "0.114" smallvec = "1.7.0" rustc-hash = "2.0.0" sonatina-triple = { path = "../triple", version = "0.0.3-alpha" } diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index ec48adf9..8051c27f 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["compiler", "evm", "wasm", "smart-contract"] [dependencies] ir = { package = "sonatina-ir", path = "../ir", version = "0.0.3-alpha" } sonatina-triple = { path = "../triple", version = "0.0.3-alpha" } -cranelift-entity = "0.112" +cranelift-entity = "0.114" pest = "2.7.10" pest_derive = "2.7.10" smol_str = "0.3.1" diff --git a/crates/verifier/Cargo.toml b/crates/verifier/Cargo.toml index 2af3845c..40f680c7 100644 --- a/crates/verifier/Cargo.toml +++ b/crates/verifier/Cargo.toml @@ -15,6 +15,6 @@ keywords = ["compiler", "evm", "wasm", "smart-contract"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] sonatina-ir = { path = "../ir", version = "0.0.3-alpha" } -cranelift-entity = "0.112" +cranelift-entity = "0.114" rustc-hash = "2.0.0" smallvec = "1.13.2"