2023-05-11 23:09:15 +03:00
|
|
|
[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-06-09 08:35:14 +03:00
|
|
|
serde = { version = "1.0.164", features = [] }
|
2023-05-29 19:43:51 +03:00
|
|
|
tokio = { version = "1.28.2", features = ["full"] }
|
2023-06-24 02:28:45 +03:00
|
|
|
tracing = "0.1.37"
|
2023-06-18 19:47:40 +03:00
|
|
|
watermill = "0.1.1"
|
2023-05-11 23:09:15 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-29 19:43:51 +03:00
|
|
|
tokio = { version = "1.28.2", features = ["full", "test-util"] }
|