chore(cargo): update package metadata

Signed-off-by: Changyuan Lyu <changyuanl@google.com>
This commit is contained in:
Changyuan Lyu 2024-04-28 22:47:46 -07:00 committed by Lencerf
parent d7e2955ace
commit 5479762c7e
3 changed files with 14 additions and 1 deletions

View file

@ -2,6 +2,11 @@
members = ["alioth", "alioth-cli"] members = ["alioth", "alioth-cli"]
resolver = "2" resolver = "2"
[workspace.package]
authors = ["Changyuan Lyu <changyuan.lv@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/google/alioth"
[workspace.dependencies] [workspace.dependencies]
parking_lot = { version = "0.12", features = ["hardware-lock-elision"] } parking_lot = { version = "0.12", features = ["hardware-lock-elision"] }

View file

@ -2,13 +2,17 @@
name = "alioth-cli" name = "alioth-cli"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
description = "a KVM-based toy virtual machine monitor"
repository.workspace = true
authors.workspace = true
license.workspace = true
[dependencies] [dependencies]
log = "0.4" log = "0.4"
flexi_logger = "0.28" flexi_logger = "0.28"
clap = { version = "4", features = ["derive"] } clap = { version = "4", features = ["derive"] }
anyhow = "1" anyhow = "1"
alioth = { path = "../alioth" } alioth = { version = "0.1.0", path = "../alioth" }
[[bin]] [[bin]]
path = "src/main.rs" path = "src/main.rs"

View file

@ -2,6 +2,10 @@
name = "alioth" name = "alioth"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
description = "A library for virtualization"
repository.workspace = true
authors.workspace = true
license.workspace = true
[dependencies] [dependencies]
thiserror = "1" thiserror = "1"