mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-02 16:21:42 +00:00
Fixes #7785 - [x] Update all integration tests with >1 files to follow the `main` pattern. - [x] `crypto/eth2_key_derivation/tests` - [x] `crypto/eth2_keystore/tests` - [x] `crypto/eth2_wallet/tests` - [x] `slasher/tests` - [x] `common/eth2_interop_keypairs/tests` - [x] `beacon_node/lighthouse_network/tests` - [x] Set `debug_assertions` to false on `.vscode/settings.json`. - [x] Document how to make rust analyzer work on integration tests files. In `book/src/contributing_setup.md` --- Tracking a `rust-analyzer.toml` with settings like the one provided in `.vscode/settings.json` would be nicer. But this is not possible yet. For now, that config should be a good enough indicator for devs using editors different to VSCode. Co-Authored-By: Daniel Ramirez-Chiquillo <hi@danielrachi.com> Co-Authored-By: Michael Sproul <michael@sigmaprime.io>
32 lines
933 B
TOML
32 lines
933 B
TOML
[package]
|
|
name = "eth2_keystore"
|
|
version = "0.1.0"
|
|
authors = ["Pawan Dhananjay <pawan@sigmaprime.io", "Paul Hauner <paul@paulhauner.com>"]
|
|
edition = { workspace = true }
|
|
autotests = false
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
aes = { version = "0.7", features = ["ctr"] }
|
|
bls = { workspace = true }
|
|
eth2_key_derivation = { workspace = true }
|
|
hex = { workspace = true }
|
|
hmac = "0.11.0"
|
|
pbkdf2 = { version = "0.8.0", default-features = false }
|
|
rand = { workspace = true }
|
|
scrypt = { version = "0.7.0", default-features = false }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_repr = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
unicode-normalization = "0.1.16"
|
|
uuid = { workspace = true }
|
|
zeroize = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
|
|
[[test]]
|
|
name = "eth2_keystore_tests"
|
|
path = "tests/main.rs"
|