xref: /cloud-hypervisor/performance-metrics/Cargo.toml (revision b440cb7d2330770cd415b63544a371d4caa2db3a)
1[package]
2name = "performance-metrics"
3version = "0.1.0"
4authors = ["The Cloud Hypervisor Authors"]
5edition = "2021"
6build = "build.rs"
7
8[dependencies]
9clap = { version = "3.2.12", features = ["wrap_help","cargo"] }
10dirs = "4.0.0"
11serde = { version = "1.0.139", features = ["rc", "derive"] }
12serde_json = "1.0.82"
13test_infra = { path = "../test_infra" }
14thiserror = "1.0.31"
15wait-timeout = "0.2.0"
16
17[build-dependencies]
18clap = { version = "3.2.12", features = ["cargo"] }
19