This will also prevent some useless rebuilds. Using `--verbose` we can observe that the build.rs causes frequent useless rebuilds - having less is a good thing. They come from the dependency of `build.rs` to the local git repository. Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de> On-behalf-of: SAP philipp.schuster@sap.com
16 lines
414 B
TOML
16 lines
414 B
TOML
[package]
|
|
authors = ["The Cloud Hypervisor Authors"]
|
|
edition.workspace = true
|
|
name = "performance-metrics"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
clap = { workspace = true, features = ["wrap_help"] }
|
|
dirs = { workspace = true }
|
|
serde = { workspace = true, features = ["derive", "rc"] }
|
|
serde_json = { workspace = true }
|
|
test_infra = { path = "../test_infra" }
|
|
thiserror = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|