From 213c55e96d1f3d34e4e3285cc12155479940a24f Mon Sep 17 00:00:00 2001 From: pgherveou Date: Mon, 9 Sep 2024 16:50:47 +0200 Subject: [PATCH] fix more cargo.toml version --- ethbloom/Cargo.toml | 2 +- ethereum-types/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ethbloom/Cargo.toml b/ethbloom/Cargo.toml index 2a27f882..02c49e0d 100644 --- a/ethbloom/Cargo.toml +++ b/ethbloom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethbloom" -version = "0.13.1" +version = "0.14.0" authors = ["Parity Technologies "] description = "Ethereum bloom filter" license = "MIT OR Apache-2.0" diff --git a/ethereum-types/Cargo.toml b/ethereum-types/Cargo.toml index 9884f9fb..d21eadd7 100644 --- a/ethereum-types/Cargo.toml +++ b/ethereum-types/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" rust-version = "1.60.0" [dependencies] -ethbloom = { path = "../ethbloom", version = "0.13", optional = true, default-features = false } +ethbloom = { path = "../ethbloom", version = "0.14", optional = true, default-features = false } fixed-hash = { path = "../fixed-hash", version = "0.8", default-features = false, features = ["byteorder", "rustc-hex"] } uint-crate = { path = "../uint", package = "uint", version = "0.10.0", default-features = false } primitive-types = { path = "../primitive-types", version = "0.13", features = ["byteorder", "rustc-hex"], default-features = false }