mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-12-26 08:15:17 +00:00
1de7afec14
Some checks are pending
abi-consistent-check / build-and-compare (push) Waiting to run
code-coverage / unittest-cov (push) Waiting to run
rust / check (push) Waiting to run
rust / test (push) Waiting to run
rust / lints (push) Waiting to run
functional-test / test (push) Waiting to run
* Add metrics for file finalization in chunk pool * Add metrics for network unbounded channel
18 lines
475 B
TOML
18 lines
475 B
TOML
[package]
|
|
name = "chunk_pool"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.58", features = ["backtrace"] }
|
|
shared_types = { path = "../shared_types" }
|
|
storage-async = { path = "../storage-async" }
|
|
log_entry_sync = { path = "../log_entry_sync" }
|
|
network = { path = "../network" }
|
|
tokio = { version = "1.19.2", features = ["sync"] }
|
|
async-lock = "2.5.0"
|
|
hashlink = "0.8.0"
|
|
tracing = "0.1.35"
|
|
lazy_static = "1.4.0"
|
|
metrics = { workspace = true }
|