2022-01-11 05:27:58 +00: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-11 02:02:03 +00:00
|
|
|
build = "build.rs"
|
2022-01-11 05:27:58 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-07-20 12:38:12 +00:00
|
|
|
clap = { version = "3.2.13", features = ["wrap_help","cargo"] }
|
2022-01-11 05:27:58 +00:00
|
|
|
dirs = "4.0.0"
|
2022-07-11 23:14:56 +00:00
|
|
|
serde = { version = "1.0.139", features = ["rc", "derive"] }
|
2022-06-30 16:07:47 +00:00
|
|
|
serde_json = "1.0.82"
|
2022-01-11 05:27:58 +00:00
|
|
|
test_infra = { path = "../test_infra" }
|
2022-05-02 09:15:04 +00:00
|
|
|
thiserror = "1.0.31"
|
2022-01-11 05:27:58 +00:00
|
|
|
wait-timeout = "0.2.0"
|
2022-02-11 02:02:03 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-07-20 12:38:12 +00:00
|
|
|
clap = { version = "3.2.13", features = ["cargo"] }
|