mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-10 10:05:17 +00:00
f9120b1e4a
* Add metrics configurations * Add metrics in router package * Add catch up info in sync service state * Add metrics for auto sync * update cargo lock
31 lines
838 B
TOML
31 lines
838 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"
|
|
serde = { version = "1.0.137", features = ["derive"] }
|
|
duration-str = "0.5.1"
|
|
public-ip = "0.2"
|
|
metrics = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
channel = { path = "../../common/channel" }
|