mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-10 18:15:18 +00:00
0f52325f67
* Save test logs. * Prepare to handle shard config in chunk pool. * Allow files to be finalized with only sharded data. * Handle shard config change. * Only sync needed data in shard config. * Fix clippy and tests.
27 lines
711 B
TOML
27 lines
711 B
TOML
[package]
|
|
name = "router"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.19"
|
|
error-chain = "0.12.4"
|
|
futures = "0.3.21"
|
|
file_location_cache = { path = "../file_location_cache" }
|
|
lazy_static = "1.4.0"
|
|
miner = { path = "../miner" }
|
|
network = { path = "../network" }
|
|
shared_types = { path = "../shared_types" }
|
|
storage = { path = "../storage" }
|
|
storage-async = { path = "../storage-async" }
|
|
sync = { path = "../sync" }
|
|
task_executor = { path = "../../common/task_executor" }
|
|
pruner = { path = "../pruner" }
|
|
chunk_pool = { path = "../chunk_pool" }
|
|
tokio = { version = "1.19.2", features = ["full"] }
|
|
tracing = "0.1.35"
|
|
rand = "0.8.5"
|
|
|
|
[dev-dependencies]
|
|
channel = { path = "../../common/channel" }
|