46fbf5b98b
## Issue Addressed Updates discv5 Pending on - [x] #3547 - [x] Alex upgrades his deps ## Proposed Changes updates discv5 and the enr crate. The only relevant change would be some clear indications of ipv4 usage in lighthouse ## Additional Info Functionally, this should be equivalent to the prev version. As draft pending a discv5 release
28 lines
827 B
TOML
28 lines
827 B
TOML
[package]
|
|
name = "eth2_keystore"
|
|
version = "0.1.0"
|
|
authors = ["Pawan Dhananjay <pawan@sigmaprime.io", "Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rand = "0.8.5"
|
|
hmac = "0.11.0"
|
|
pbkdf2 = { version = "0.8.0", default-features = false }
|
|
scrypt = { version = "0.7.0", default-features = false }
|
|
sha2 = "0.9.2"
|
|
uuid = { version = "0.8.1", features = ["serde", "v4"] }
|
|
zeroize = { version = "1.4.2", features = ["zeroize_derive"] }
|
|
serde = "1.0.116"
|
|
serde_repr = "0.1.6"
|
|
hex = "0.4.2"
|
|
bls = { path = "../bls" }
|
|
serde_json = "1.0.58"
|
|
eth2_key_derivation = { path = "../eth2_key_derivation" }
|
|
unicode-normalization = "0.1.16"
|
|
aes = { version = "0.7", features = ["ctr"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0"
|