diff --git a/crates/codegen/Cargo.toml b/crates/codegen/Cargo.toml index 99ff0d1a..25e22b87 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.109" +cranelift-entity = "0.110" 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 0f3e19a1..5247e2d3 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.109" +cranelift-entity = "0.110" sonatina-ir = { path = "../ir", version = "0.0.3-alpha" } [dev-dependencies] diff --git a/crates/ir/Cargo.toml b/crates/ir/Cargo.toml index 9db858d1..e76ba076 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.12", default-features = false } -cranelift-entity = "0.109" +cranelift-entity = "0.110" 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 d1302c3e..7d7cd055 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.109" +cranelift-entity = "0.110" pest = "2.7.10" pest_derive = "2.7.10" smol_str = "0.2.2"