From 184d40d3773eb26a1eaab800bcc8cc0454e75afb Mon Sep 17 00:00:00 2001 From: Cyrill Leutwiler Date: Mon, 19 Aug 2024 18:40:35 +0200 Subject: [PATCH] Upgrade inkwell (#31) Signed-off-by: xermicus --- Cargo.lock | 10 ++++++---- Cargo.toml | 3 +-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index abed74b..2ff54f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1028,8 +1028,9 @@ dependencies = [ [[package]] name = "inkwell" -version = "0.4.0" -source = "git+https://github.com/TheDan64/inkwell.git?rev=6c0fb56b3554e939f9ca61b465043d6a84fb7b95#6c0fb56b3554e939f9ca61b465043d6a84fb7b95" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40fb405537710d51f6bdbc8471365ddd4cd6d3a3c3ad6e0c8291691031ba94b2" dependencies = [ "either", "inkwell_internals", @@ -1042,8 +1043,9 @@ dependencies = [ [[package]] name = "inkwell_internals" -version = "0.9.0" -source = "git+https://github.com/TheDan64/inkwell.git?rev=6c0fb56b3554e939f9ca61b465043d6a84fb7b95#6c0fb56b3554e939f9ca61b465043d6a84fb7b95" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dd28cfd4cfba665d47d31c08a6ba637eed16770abca2eccbbc3ca831fef1e44" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 6d1b859..e7d1e25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,8 +43,7 @@ primitive-types = { version = "0.12", features = ["codec"] } evm-interpreter = { git = "https://github.com/xermicus/evm.git", branch = "separate-compilation" } [workspace.dependencies.inkwell] -git = "https://github.com/TheDan64/inkwell.git" -rev = "6c0fb56b3554e939f9ca61b465043d6a84fb7b95" +version = "0.5" default-features = false features = ["serde", "llvm18-0", "no-libffi-linking", "target-riscv"]