mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-10 10:05:17 +00:00
ef82f64393
* 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. * Add back shard config and fix test. * fix: serde format * Remove unneeded PORA_CHUNK_SIZE. * Fix tests. --------- Co-authored-by: MiniFrenchBread <103425574+MiniFrenchBread@users.noreply.github.com>
13 lines
265 B
TOML
13 lines
265 B
TOML
[package]
|
|
name = "pruner"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
storage = { path = "../storage" }
|
|
miner = { path = "../miner" }
|
|
anyhow = "1.0.86"
|
|
tokio = "1.37.0"
|
|
rand = "0.8.5"
|
|
task_executor = { path = "../../common/task_executor" }
|
|
tracing = "0.1.40" |