mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-10 18:15:18 +00:00
c2c6e2d5fb
* Implement Pruner. * Put pruner in a crate. * Fix clippy. * Add rpc zgs_getShardConfig. * Fix. * Increase wait time. * Add pruner_test and use max_num_chunks instead of size_limit. * Store shard config for peers and choose sync peers accordingly. * Add test and fix sync. * Fix clippy and test. * Fix some ut. * Add AnnounceShardConfig gossip and fix tests. * Add sharded tx finalize check in LogManager. * Try, * Rename. * Longer timeout for mine_test. * Save test logs.
15 lines
303 B
TOML
15 lines
303 B
TOML
[package]
|
|
name = "file_location_cache"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
hashlink = "0.8.0"
|
|
network = { path = "../network" }
|
|
storage = { path = "../storage" }
|
|
parking_lot = "0.12.1"
|
|
rand = "0.8.5"
|
|
tracing = "0.1.35"
|
|
priority-queue = "1.2.3"
|
|
shared_types = { path = "../shared_types" }
|