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-06-12 21:44:51 +03:00
|
|
|
log = "0.4.19"
|
2023-07-18 19:54:56 +03:00
|
|
|
portable-atomic = { version = "1.4.1", features = ["float"] }
|
2023-07-25 07:59:37 +03:00
|
|
|
serde = { version = "1.0.175", features = [] }
|
2023-06-30 09:16:31 +03:00
|
|
|
tokio = { version = "1.29.1", 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-06-30 09:16:31 +03:00
|
|
|
tokio = { version = "1.29.1", features = ["full", "test-util"] }
|