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>
82 lines
2.0 KiB
TOML
82 lines
2.0 KiB
TOML
[package]
|
|
name = "lighthouse_network"
|
|
version = "0.2.0"
|
|
authors = ["Sigma Prime <contact@sigmaprime.io>"]
|
|
edition = { workspace = true }
|
|
autotests = false
|
|
|
|
[features]
|
|
libp2p-websocket = []
|
|
|
|
[dependencies]
|
|
alloy-primitives = { workspace = true }
|
|
alloy-rlp = { workspace = true }
|
|
bytes = { workspace = true }
|
|
delay_map = { workspace = true }
|
|
directory = { workspace = true }
|
|
dirs = { workspace = true }
|
|
discv5 = { workspace = true }
|
|
either = { workspace = true }
|
|
eth2 = { workspace = true }
|
|
ethereum_ssz = { workspace = true }
|
|
ethereum_ssz_derive = { workspace = true }
|
|
fnv = { workspace = true }
|
|
futures = { workspace = true }
|
|
gossipsub = { workspace = true }
|
|
hex = { workspace = true }
|
|
itertools = { workspace = true }
|
|
libp2p-mplex = "0.43"
|
|
lighthouse_version = { workspace = true }
|
|
local-ip-address = "0.6"
|
|
logging = { workspace = true }
|
|
lru = { workspace = true }
|
|
lru_cache = { workspace = true }
|
|
metrics = { workspace = true }
|
|
network_utils = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
prometheus-client = "0.23.0"
|
|
rand = { workspace = true }
|
|
regex = { workspace = true }
|
|
serde = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
smallvec = { workspace = true }
|
|
snap = { workspace = true }
|
|
ssz_types = { workspace = true }
|
|
strum = { workspace = true }
|
|
superstruct = { workspace = true }
|
|
task_executor = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
types = { workspace = true }
|
|
unsigned-varint = { version = "0.8", features = ["codec"] }
|
|
|
|
[dependencies.libp2p]
|
|
version = "0.56"
|
|
default-features = false
|
|
features = [
|
|
"identify",
|
|
"yamux",
|
|
"noise",
|
|
"dns",
|
|
"tcp",
|
|
"tokio",
|
|
"plaintext",
|
|
"secp256k1",
|
|
"macros",
|
|
"metrics",
|
|
"quic",
|
|
"upnp",
|
|
]
|
|
|
|
[dev-dependencies]
|
|
async-channel = { workspace = true }
|
|
logging = { workspace = true }
|
|
proptest = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
|
|
[[test]]
|
|
name = "lighthouse_network_tests"
|
|
path = "tests/main.rs"
|