web3-proxy/latency/Cargo.toml

19 lines
494 B
TOML
Raw Normal View History

[package]
name = "latency"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-23 01:43:39 +03:00
flume = "0.10.14"
2023-06-12 21:44:51 +03:00
log = "0.4.19"
2023-06-18 19:47:40 +03:00
portable-atomic = { version = "1.3.3", features = ["float"] }
2023-07-03 22:28:07 +03:00
serde = { version = "1.0.166", features = [] }
2023-06-30 09:16:31 +03:00
tokio = { version = "1.29.1", features = ["full"] }
tracing = "0.1.37"
2023-06-18 19:47:40 +03:00
watermill = "0.1.1"
[dev-dependencies]
2023-06-30 09:16:31 +03:00
tokio = { version = "1.29.1", features = ["full", "test-util"] }