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"