chore: reexport hex (#128)

This commit is contained in:
Matthias Seitz
2022-10-25 02:06:12 +02:00
committed by GitHub
parent 1bbf9d2d82
commit 77ea53bb6e
3 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View File

@ -2625,6 +2625,7 @@ dependencies = [
"bytes", "bytes",
"crc", "crc",
"ethers-core", "ethers-core",
"hex",
"hex-literal", "hex-literal",
"maplit", "maplit",
"parity-scale-codec", "parity-scale-codec",

View File

@ -27,6 +27,7 @@ serde = "1.0"
thiserror = "1" thiserror = "1"
sucds = "0.5.0" sucds = "0.5.0"
arbitrary = { version = "1.1.7", features = ["derive"], optional = true} arbitrary = { version = "1.1.7", features = ["derive"], optional = true}
hex = "0.4"
[dev-dependencies] [dev-dependencies]
arbitrary = { version = "1.1.7", features = ["derive"]} arbitrary = { version = "1.1.7", features = ["derive"]}

View File

@ -57,6 +57,7 @@ pub use ethers_core::{
#[doc(hidden)] #[doc(hidden)]
mod __reexport { mod __reexport {
pub use hex;
pub use tiny_keccak; pub use tiny_keccak;
} }