From 5479762c7ea3395a0b61f4dd80eb28322d63bcde Mon Sep 17 00:00:00 2001 From: Changyuan Lyu Date: Sun, 28 Apr 2024 22:47:46 -0700 Subject: [PATCH] chore(cargo): update package metadata Signed-off-by: Changyuan Lyu --- Cargo.toml | 5 +++++ alioth-cli/Cargo.toml | 6 +++++- alioth/Cargo.toml | 4 ++++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7865bab..2a8ad6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,11 @@ members = ["alioth", "alioth-cli"] resolver = "2" +[workspace.package] +authors = ["Changyuan Lyu "] +license = "Apache-2.0" +repository = "https://github.com/google/alioth" + [workspace.dependencies] parking_lot = { version = "0.12", features = ["hardware-lock-elision"] } diff --git a/alioth-cli/Cargo.toml b/alioth-cli/Cargo.toml index 846cb6c..817eedc 100644 --- a/alioth-cli/Cargo.toml +++ b/alioth-cli/Cargo.toml @@ -2,13 +2,17 @@ name = "alioth-cli" version = "0.1.0" edition = "2021" +description = "a KVM-based toy virtual machine monitor" +repository.workspace = true +authors.workspace = true +license.workspace = true [dependencies] log = "0.4" flexi_logger = "0.28" clap = { version = "4", features = ["derive"] } anyhow = "1" -alioth = { path = "../alioth" } +alioth = { version = "0.1.0", path = "../alioth" } [[bin]] path = "src/main.rs" diff --git a/alioth/Cargo.toml b/alioth/Cargo.toml index 7b87253..1f6563e 100644 --- a/alioth/Cargo.toml +++ b/alioth/Cargo.toml @@ -2,6 +2,10 @@ name = "alioth" version = "0.1.0" edition = "2021" +description = "A library for virtualization" +repository.workspace = true +authors.workspace = true +license.workspace = true [dependencies] thiserror = "1"