From 604be7888bba8b804236f41c241750f98cac820b Mon Sep 17 00:00:00 2001 From: Wolfgang Welz Date: Thu, 4 Jul 2024 17:34:27 +0200 Subject: [PATCH] fix: Set min `alloy-rlp` version to 0.3.7 (#169) Steel requires at least version `0.3.7`. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 88423fc..c86fdc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,8 +22,8 @@ risc0-zkp = { git = "https://github.com/risc0/risc0", branch = "main", default-f risc0-zkvm = { git = "https://github.com/risc0/risc0", branch = "main", default-features = false } alloy-primitives = { version = "0.7", features = ["serde", "rlp", "std"] } -alloy-rlp = { version = "0.3.4", default-features = false } -alloy-rlp-derive = { version = "0.3.4", default-features = false } +alloy-rlp = { version = "0.3.7", default-features = false } +alloy-rlp-derive = { version = "0.3.7", default-features = false } alloy-sol-types = { version = "0.7" } alloy-trie = { version = "0.4.0" } anyhow = { version = "1.0" }