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>
36 lines
748 B
TOML
36 lines
748 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"common/channel",
|
|
"common/directory",
|
|
"common/hashset_delay",
|
|
"common/lighthouse_metrics",
|
|
"common/merkle_tree",
|
|
"common/task_executor",
|
|
"common/zgs_version",
|
|
"common/unused_port",
|
|
"common/append_merkle",
|
|
|
|
"node",
|
|
"node/chunk_pool",
|
|
"node/file_location_cache",
|
|
"node/log_entry_sync",
|
|
"node/miner",
|
|
"node/network",
|
|
"node/pruner",
|
|
"node/router",
|
|
"node/rpc",
|
|
"node/shared_types",
|
|
"node/storage",
|
|
"node/storage-async",
|
|
"node/sync",
|
|
]
|
|
resolver = "2"
|
|
|
|
[patch.crates-io]
|
|
discv5 = { path = "version-meld/discv5" }
|
|
eth2_ssz = { path = "version-meld/eth2_ssz" }
|
|
enr = { path = "version-meld/enr" }
|
|
|
|
[profile.bench.package.'storage']
|
|
debug = true |