2022-01-10 21:27:58 -08:00
|
|
|
[package]
|
|
|
|
name = "performance-metrics"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Cloud Hypervisor Authors"]
|
2022-04-08 15:11:04 +00:00
|
|
|
edition = "2021"
|
2022-02-10 18:02:03 -08:00
|
|
|
build = "build.rs"
|
2022-01-10 21:27:58 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2022-05-12 23:10:55 +00:00
|
|
|
clap = { version = "3.1.18", features = ["wrap_help","cargo"] }
|
2022-01-10 21:27:58 -08:00
|
|
|
dirs = "4.0.0"
|
2022-05-17 14:04:38 -07:00
|
|
|
serde = { version = "1.0.137", features = ["rc", "derive"] }
|
2022-05-03 23:53:31 +00:00
|
|
|
serde_json = "1.0.81"
|
2022-01-10 21:27:58 -08:00
|
|
|
test_infra = { path = "../test_infra" }
|
2022-05-02 09:15:04 +00:00
|
|
|
thiserror = "1.0.31"
|
2022-01-10 21:27:58 -08:00
|
|
|
wait-timeout = "0.2.0"
|
2022-02-10 18:02:03 -08:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-05-12 23:10:55 +00:00
|
|
|
clap = { version = "3.1.18", features = ["cargo"] }
|