chore: patch ruint for quantity serialization (#1554)

This commit is contained in:
Dan Cline
2023-02-24 20:18:01 -05:00
committed by GitHub
parent 9c841c9082
commit 7d6563dee5
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -5274,7 +5274,7 @@ dependencies = [
[[package]] [[package]]
name = "ruint" name = "ruint"
version = "1.7.0" version = "1.7.0"
source = "git+https://github.com/mattsse/uint?branch=matt/skip-leading-zeros#7aa078a0d3ea5a05c09e7a2b42c06921d55e7c67" source = "git+https://github.com/paradigmxyz/uint#c14ed24f9611546e6614b6f9b3524de11cb35ea5"
dependencies = [ dependencies = [
"arbitrary", "arbitrary",
"derive_more", "derive_more",
@ -5290,7 +5290,7 @@ dependencies = [
[[package]] [[package]]
name = "ruint-macro" name = "ruint-macro"
version = "1.0.2" version = "1.0.2"
source = "git+https://github.com/mattsse/uint?branch=matt/skip-leading-zeros#7aa078a0d3ea5a05c09e7a2b42c06921d55e7c67" source = "git+https://github.com/paradigmxyz/uint#c14ed24f9611546e6614b6f9b3524de11cb35ea5"
[[package]] [[package]]
name = "rustc-demangle" name = "rustc-demangle"

View File

@ -45,4 +45,4 @@ default-members = ["bin/reth"]
revm = { git = "https://github.com/bluealloy/revm" } revm = { git = "https://github.com/bluealloy/revm" }
revm-primitives = { git = "https://github.com/bluealloy/revm" } revm-primitives = { git = "https://github.com/bluealloy/revm" }
# patched for quantity U256 responses <https://github.com/recmo/uint/issues/224> # patched for quantity U256 responses <https://github.com/recmo/uint/issues/224>
ruint = { git = "https://github.com/mattsse/uint", branch = "matt/skip-leading-zeros" } ruint = { git = "https://github.com/paradigmxyz/uint" }