2022-01-11 05:27:58 +00:00
|
|
|
[package]
|
|
|
|
name = "performance-metrics"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
|
|
edition = "2018"
|
2022-02-11 02:02:03 +00:00
|
|
|
build = "build.rs"
|
2022-01-11 05:27:58 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-11 05:54:42 +00:00
|
|
|
clap = { version = "3.1.0", features = ["wrap_help","cargo"] }
|
2022-01-11 05:27:58 +00:00
|
|
|
dirs = "4.0.0"
|
|
|
|
lazy_static= "1.4.0"
|
2022-02-01 05:24:13 +00:00
|
|
|
serde = { version = "1.0.136", features = ["rc"] }
|
|
|
|
serde_derive = "1.0.136"
|
2022-01-11 05:27:58 +00:00
|
|
|
serde_json = "1.0.78"
|
|
|
|
test_infra = { path = "../test_infra" }
|
2022-02-15 16:11:58 +00:00
|
|
|
thiserror = "1.0.30"
|
2022-01-11 05:27:58 +00:00
|
|
|
wait-timeout = "0.2.0"
|
2022-02-11 02:02:03 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-02-11 05:54:42 +00:00
|
|
|
clap = { version = "3.1.0", features = ["wrap_help"] }
|