mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
* Rework Validator Client fallback mechanism
* Add CI workflow for fallback simulator
* Tie-break with sync distance for non-synced nodes
* Fix simulator
* Cleanup unused code
* More improvements
* Add IsOptimistic enum for readability
* Use configurable sync distance tiers
* Fix tests
* Combine status and health and improve logging
* Fix nodes not being marked as available
* Fix simulator
* Fix tests again
* Increase fallback simulator tolerance
* Add http api endpoint
* Fix todos and tests
* Update simulator
* Merge branch 'unstable' into vc-fallback
* Add suggestions
* Add id to ui endpoint
* Remove unnecessary clones
* Formatting
* Merge branch 'unstable' into vc-fallback
* Merge branch 'unstable' into vc-fallback
* Fix flag tests
* Merge branch 'unstable' into vc-fallback
* Merge branch 'unstable' into vc-fallback
* Fix conflicts
* Merge branch 'unstable' into vc-fallback
* Remove unnecessary pubs
* Simplify `compute_distance_tier` and reduce notifier awaits
* Use the more descriptive `user_index` instead of `id`
* Combine sync distance tolerance flags into one
* Merge branch 'unstable' into vc-fallback
* Merge branch 'unstable' into vc-fallback
* wip
* Use new simulator from unstable
* Fix cli text
* Remove leftover files
* Remove old commented code
* Merge branch 'unstable' into vc-fallback
* Update cli text
* Silence candidate errors when pre-genesis
* Merge branch 'unstable' into vc-fallback
* Merge branch 'unstable' into vc-fallback
* Retry on failure
* Merge branch 'unstable' into vc-fallback
* Merge branch 'unstable' into vc-fallback
* Remove disable_run_on_all
* Remove unused error variant
* Fix out of date comment
* Merge branch 'unstable' into vc-fallback
* Remove unnecessary as_u64
* Remove more out of date comments
* Use tokio RwLock and remove parking_lot
* Merge branch 'unstable' into vc-fallback
* Formatting
* Ensure nodes are still added to total when not available
* Allow VC to detect when BN comes online
* Fix ui endpoint
* Don't have block_service as an Option
* Merge branch 'unstable' into vc-fallback
* Clean up lifetimes and futures
* Revert "Don't have block_service as an Option"
This reverts commit b5445a09e9.
* Merge branch 'unstable' into vc-fallback
* Merge branch 'unstable' into vc-fallback
* Improve rwlock sanitation using clones
* Merge branch 'unstable' into vc-fallback
* Drop read lock immediately by cloning the vec.
64 lines
2.0 KiB
TOML
64 lines
2.0 KiB
TOML
[package]
|
|
name = "validator_client"
|
|
version = "0.3.5"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com>", "Luke Anderson <luke@lukeanderson.com.au>"]
|
|
edition = { workspace = true }
|
|
|
|
[lib]
|
|
name = "validator_client"
|
|
path = "src/lib.rs"
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true }
|
|
|
|
[dependencies]
|
|
tree_hash = { workspace = true }
|
|
clap = { workspace = true }
|
|
slashing_protection = { workspace = true }
|
|
slot_clock = { workspace = true }
|
|
types = { workspace = true }
|
|
safe_arith = { workspace = true }
|
|
serde = { workspace = true }
|
|
bincode = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
slog = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
futures = { workspace = true }
|
|
dirs = { workspace = true }
|
|
directory = { workspace = true }
|
|
lockfile = { workspace = true }
|
|
environment = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
filesystem = { workspace = true }
|
|
hex = { workspace = true }
|
|
deposit_contract = { workspace = true }
|
|
bls = { workspace = true }
|
|
eth2 = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
validator_dir = { workspace = true }
|
|
clap_utils = { workspace = true }
|
|
eth2_keystore = { workspace = true }
|
|
account_utils = { workspace = true }
|
|
lighthouse_version = { workspace = true }
|
|
warp_utils = { workspace = true }
|
|
warp = { workspace = true }
|
|
hyper = { workspace = true }
|
|
ethereum_serde_utils = { workspace = true }
|
|
libsecp256k1 = { workspace = true }
|
|
ring = { workspace = true }
|
|
rand = { workspace = true, features = ["small_rng"] }
|
|
lighthouse_metrics = { workspace = true }
|
|
monitoring_api = { workspace = true }
|
|
sensitive_url = { workspace = true }
|
|
task_executor = { workspace = true }
|
|
reqwest = { workspace = true, features = ["native-tls"] }
|
|
url = { workspace = true }
|
|
malloc_utils = { workspace = true }
|
|
sysinfo = { workspace = true }
|
|
system_health = { path = "../common/system_health" }
|
|
logging = { workspace = true }
|
|
strum = { workspace = true }
|
|
itertools = { workspace = true }
|
|
fdlimit = "0.3.0"
|