mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[package]
|
|
name = "reth-ecies"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
reth-network-peers = { workspace = true, features = ["secp256k1"] }
|
|
|
|
alloy-primitives = { workspace = true, features = ["rand", "rlp"] }
|
|
alloy-rlp = { workspace = true, features = ["derive", "arrayvec"] }
|
|
|
|
futures.workspace = true
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = ["time"] }
|
|
tokio-stream.workspace = true
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
pin-project.workspace = true
|
|
|
|
tracing.workspace = true
|
|
|
|
# HeaderBytes
|
|
generic-array.workspace = true
|
|
typenum = "1.15.0"
|
|
byteorder.workspace = true
|
|
|
|
# crypto
|
|
rand.workspace = true
|
|
ctr = "0.9.2"
|
|
digest = "0.10.5"
|
|
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
|
|
concat-kdf = "0.1.0"
|
|
sha2.workspace = true
|
|
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"] }
|