From f104bcdb6bdb2ad92cf5895ffa54b82552c7d742 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Thu, 27 Nov 2025 16:45:17 +0100 Subject: [PATCH] build: remove useless build scripts (copy & paste artifact) 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 On-behalf-of: SAP philipp.schuster@sap.com --- performance-metrics/Cargo.toml | 1 - vhost_user_block/Cargo.toml | 1 - vhost_user_net/Cargo.toml | 1 - 3 files changed, 3 deletions(-) diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index 531c6abe9..472f1159b 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -1,6 +1,5 @@ [package] authors = ["The Cloud Hypervisor Authors"] -build = "../build.rs" edition.workspace = true name = "performance-metrics" version = "0.1.0" diff --git a/vhost_user_block/Cargo.toml b/vhost_user_block/Cargo.toml index e674c96ea..051210cb4 100644 --- a/vhost_user_block/Cargo.toml +++ b/vhost_user_block/Cargo.toml @@ -1,6 +1,5 @@ [package] authors = ["The Cloud Hypervisor Authors"] -build = "../build.rs" edition.workspace = true name = "vhost_user_block" version = "0.1.0" diff --git a/vhost_user_net/Cargo.toml b/vhost_user_net/Cargo.toml index 849ad5426..2edf00db9 100644 --- a/vhost_user_net/Cargo.toml +++ b/vhost_user_net/Cargo.toml @@ -1,6 +1,5 @@ [package] authors = ["The Cloud Hypervisor Authors"] -build = "../build.rs" edition.workspace = true name = "vhost_user_net" version = "0.1.0"