bf2eeae3f2
* Implement freezer database for state vectors * Improve BeaconState safe accessors And fix a bug in the compact committees accessor. * Banish dodgy type bounds back to gRPC * Clean up * Switch to exclusive end points in chunked vec * Cleaning up and start of tests * Randao fix, more tests * Fix unsightly hack * Resolve test FIXMEs * Config file support * More clean-ups, migrator beginnings * Finish migrator, integrate into BeaconChain * Fixups * Fix store tests * Fix BeaconChain tests * Fix LMD GHOST tests * Address review comments, delete 'static bounds * Cargo format * Address review comments * Fix LMD ghost tests * Update to spec v0.9.0 * Update to v0.9.1 * Bump spec tags for v0.9.1 * Formatting, fix CI failures * Resolve accidental KeyPair merge conflict * Document new BeaconState functions * Fix incorrect cache drops in `advance_caches` * Update fork choice for v0.9.1 * Clean up some FIXMEs * Fix a few docs/logs * Update for new builder paradigm, spec changes * Freezer DB integration into BeaconNode * Cleaning up * This works, clean it up * Cleanups * Fix and improve store tests * Refine store test * Delete unused beacon_chain_builder.rs * Fix CLI * Store state at split slot in hot database * Make fork choice lookup fast again * Store freezer DB split slot in the database * Handle potential div by 0 in chunked_vector * Exclude committee caches from freezer DB * Remove FIXME about long-running test
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[package]
|
|
name = "client"
|
|
version = "0.1.0"
|
|
authors = ["Age Manning <Age@AgeManning.com>"]
|
|
edition = "2018"
|
|
|
|
[dev-dependencies]
|
|
sloggers = "0.3.4"
|
|
toml = "^0.5"
|
|
|
|
[dependencies]
|
|
beacon_chain = { path = "../beacon_chain" }
|
|
store = { path = "../store" }
|
|
network = { path = "../network" }
|
|
eth2-libp2p = { path = "../eth2-libp2p" }
|
|
rest_api = { path = "../rest_api" }
|
|
parking_lot = "0.9.0"
|
|
websocket_server = { path = "../websocket_server" }
|
|
prometheus = "0.7.0"
|
|
types = { path = "../../eth2/types" }
|
|
tree_hash = "0.1.0"
|
|
eth2_config = { path = "../../eth2/utils/eth2_config" }
|
|
slot_clock = { path = "../../eth2/utils/slot_clock" }
|
|
serde = "1.0.102"
|
|
serde_derive = "1.0.102"
|
|
error-chain = "0.12.1"
|
|
serde_yaml = "0.8.11"
|
|
slog = { version = "2.5.2", features = ["max_level_trace"] }
|
|
slog-async = "2.3.0"
|
|
tokio = "0.1.22"
|
|
clap = "2.33.0"
|
|
dirs = "2.0.2"
|
|
exit-future = "0.1.4"
|
|
futures = "0.1.29"
|
|
reqwest = "0.9.22"
|
|
url = "2.1.0"
|
|
lmd_ghost = { path = "../../eth2/lmd_ghost" }
|
|
eth1 = { path = "../eth1" }
|
|
genesis = { path = "../genesis" }
|
|
environment = { path = "../../lighthouse/environment" }
|
|
lighthouse_bootstrap = { path = "../../eth2/utils/lighthouse_bootstrap" }
|