Files
nanoreth/crates/net/ecies/Cargo.toml

44 lines
1.0 KiB
TOML

[package]
name = "reth-ecies"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
reth-rlp = { path = "../../rlp", features = ["derive", "ethereum-types", "std"] }
reth-primitives = { path = "../../primitives" }
reth-net-common = { path = "../common" }
futures = "0.3.24"
thiserror = "1.0.37"
tokio = { version = "1.21.2", features = ["full"] }
tokio-stream = "0.1.11"
tokio-util = { version = "0.7.4", features = ["codec"] }
pin-project = "1.0"
educe = "0.4.19"
tracing = { workspace = true }
# HeaderBytes
generic-array = "0.14.6"
typenum = "1.15.0"
byteorder = "1.4.3"
# crypto
rand = "0.8.5"
ctr = "0.9.2"
digest = "0.10.5"
secp256k1 = { version = "0.27.0", features = ["global-context", "rand-std", "recovery"] }
sha2 = "0.10.6"
sha3 = "0.10.5"
aes = "0.8.1"
hmac = "0.12.1"
block-padding = "0.3.2"
cipher = { version = "0.4.3", features = ["block-padding"] }
[dev-dependencies]
hex-literal = "0.3.4"