mirror of
https://github.com/google/alioth.git
synced 2024-11-28 01:06:51 +00:00
chore(cargo): update package metadata
Signed-off-by: Changyuan Lyu <changyuanl@google.com>
This commit is contained in:
parent
d7e2955ace
commit
5479762c7e
3 changed files with 14 additions and 1 deletions
|
@ -2,6 +2,11 @@
|
|||
members = ["alioth", "alioth-cli"]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
authors = ["Changyuan Lyu <changyuan.lv@gmail.com>"]
|
||||
license = "Apache-2.0"
|
||||
repository = "https://github.com/google/alioth"
|
||||
|
||||
[workspace.dependencies]
|
||||
parking_lot = { version = "0.12", features = ["hardware-lock-elision"] }
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue