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.22", features = ["wrap_help","cargo"] } 10dirs = "4.0.0" 11serde = { version = "1.0.145", features = ["rc", "derive"] } 12serde_json = "1.0.85" 13test_infra = { path = "../test_infra" } 14thiserror = "1.0.37" 15wait-timeout = "0.2.0" 16 17[build-dependencies] 18clap = { version = "3.2.22", features = ["cargo"] } 19