diff --git a/crates/codegen/Cargo.toml b/crates/codegen/Cargo.toml index 21d7f033..9495876d 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.111" +cranelift-entity = "0.112" 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 59755dba..b047a883 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.111" +cranelift-entity = "0.112" sonatina-ir = { path = "../ir", version = "0.0.3-alpha" } [dev-dependencies] diff --git a/crates/ir/Cargo.toml b/crates/ir/Cargo.toml index 1545dd4e..ccd0bb43 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.111" +cranelift-entity = "0.112" smallvec = "1.7.0" rustc-hash = "2.0.0" dyn-clone = "1.0.4" diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 922feb21..0f88c8a9 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.111" +cranelift-entity = "0.112" 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 840b7481..d532a7b1 100644 --- a/crates/verifier/Cargo.toml +++ b/crates/verifier/Cargo.toml @@ -16,4 +16,4 @@ keywords = ["compiler", "evm", "wasm", "smart-contract"] [dependencies] sonatina-ir = { path = "../ir", version = "0.0.3-alpha" } -cranelift-entity = "0.111" +cranelift-entity = "0.112"