a28e8decbf
## Issue Addressed NA ## Proposed Changes Updates out of date dependencies. ## Additional Info See also https://github.com/sigp/lighthouse/issues/1712 for a list of dependencies that are still out of date and the resasons.
29 lines
818 B
TOML
29 lines
818 B
TOML
[package]
|
|
name = "eth2_keystore"
|
|
version = "0.1.0"
|
|
authors = ["Pawan Dhananjay <pawan@sigmaprime.io", "Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rand = "0.7.3"
|
|
aes-ctr = "0.6.0"
|
|
hmac = "0.10.1"
|
|
pbkdf2 = { version = "0.6.0", default-features = false }
|
|
scrypt = { version = "0.5.0", default-features = false }
|
|
sha2 = "0.9.1"
|
|
uuid = { version = "0.8.1", features = ["serde", "v4"] }
|
|
zeroize = { version = "1.1.1", features = ["zeroize_derive"] }
|
|
serde = "1.0.116"
|
|
serde_repr = "0.1.6"
|
|
hex = "0.4.2"
|
|
bls = { path = "../bls" }
|
|
eth2_ssz = "0.1.2"
|
|
serde_json = "1.0.58"
|
|
eth2_key_derivation = { path = "../eth2_key_derivation" }
|
|
unicode-normalization = "0.1.16"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0"
|