From 86fa18821ba644918d6cab07d9e24e693778770c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 06:40:38 +0000 Subject: [PATCH] Update cranelift-entity requirement from 0.114 to 0.115 --- 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 8f5ec53c..49549dc6 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.114" +cranelift-entity = "0.115" 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 11d8f4fb..a081df60 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.114" +cranelift-entity = "0.115" sonatina-ir = { path = "../ir", version = "0.0.3-alpha" } dashmap = "6.1" dyn-clone = "1.0" diff --git a/crates/ir/Cargo.toml b/crates/ir/Cargo.toml index ed9d9299..38e0d6bd 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.114" +cranelift-entity = "0.115" 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 5e7b929d..c0cb21d9 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.114" +cranelift-entity = "0.115" 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 40f680c7..f29d8493 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.114" +cranelift-entity = "0.115" rustc-hash = "2.0.0" smallvec = "1.13.2"