xref: /cloud-hypervisor/performance-metrics/Cargo.toml (revision 7d7bfb2034001d4cb15df2ddc56d2d350c8da30f)
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.1.8", features = ["wrap_help","cargo"] }
10dirs = "4.0.0"
11serde = { version = "1.0.136", features = ["rc"] }
12serde_derive = "1.0.136"
13serde_json = "1.0.78"
14test_infra = { path = "../test_infra" }
15thiserror = "1.0.30"
16wait-timeout = "0.2.0"
17
18[build-dependencies]
19clap = { version = "3.1.8", features = ["wrap_help"] }
20