From 3fbe693658b6d93064ea44b6f32c681bcc2fe18e Mon Sep 17 00:00:00 2001 From: Ruoqing He Date: Wed, 12 Nov 2025 05:15:30 +0000 Subject: [PATCH] build: Introduce root workspace for rust components Add Cargo.toml at repo root, use this root workspace for as many as possible Rust components of Kata Containers. This would enable us to share a common Cargo.lock file, and reduce the noise from dependabot. Signed-off-by: Ruoqing He --- Cargo.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000000..4a719af129 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[workspace.package] +authors = ["The Kata Containers community "] +edition = "2018" +license = "Apache-2.0" +rust-version = "1.85.1" + +[workspace] +members = []