mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
* Replace `lazy_static` with `LazyLock`. * Merge branch 'unstable' into remove-lazy-static # Conflicts: # beacon_node/lighthouse_network/src/peer_manager/mod.rs * Lint fixes. * Merge branch 'unstable' into remove-lazy-static # Conflicts: # beacon_node/beacon_chain/src/metrics.rs * Moar lint fixes. * Update rust version to 1.80.0. * Merge branch 'unstable' into remove-lazy-static
27 lines
709 B
TOML
27 lines
709 B
TOML
[package]
|
|
name = "store"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
beacon_chain = { workspace = true }
|
|
|
|
[dependencies]
|
|
db-key = "0.0.5"
|
|
leveldb = { version = "0.8" }
|
|
parking_lot = { workspace = true }
|
|
itertools = { workspace = true }
|
|
ethereum_ssz = { workspace = true }
|
|
ethereum_ssz_derive = { workspace = true }
|
|
types = { workspace = true }
|
|
state_processing = { workspace = true }
|
|
slog = { workspace = true }
|
|
serde = { workspace = true }
|
|
lighthouse_metrics = { workspace = true }
|
|
lru = { workspace = true }
|
|
sloggers = { workspace = true }
|
|
directory = { workspace = true }
|
|
strum = { workspace = true }
|