20 lines
559 B
TOML
20 lines
559 B
TOML
[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]
|
|
flume = "0.10.14"
|
|
log = "0.4.19"
|
|
portable-atomic = { version = "1.3.3", features = ["float"] }
|
|
serde = { version = "1.0.164", features = [] }
|
|
tokio = { version = "1.28.2", features = ["full"] }
|
|
tracing = "0.1.37"
|
|
watermill = "0.1.1"
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.28.2", features = ["full", "test-util"] }
|