mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-17 04:48:21 +00:00
`serde_yaml` is now deprecated. The API-compatible `yaml_serde` should be used instead. Replace `serde_yaml` with `yaml_serde`. This is purely mechanical as the API is 1-to-1. Co-Authored-By: Mac L <mjladson@pm.me>
23 lines
555 B
TOML
23 lines
555 B
TOML
[package]
|
|
name = "eth2_interop_keypairs"
|
|
version = "0.2.0"
|
|
authors = ["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]
|
|
bls = { workspace = true }
|
|
ethereum_hashing = { workspace = true }
|
|
hex = { workspace = true }
|
|
num-bigint = "0.4.2"
|
|
serde = { workspace = true }
|
|
yaml_serde = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
base64 = "0.13.0"
|
|
|
|
[[test]]
|
|
name = "eth2_interop_keypairs_tests"
|
|
path = "tests/main.rs"
|