From efba8b1316848611ae538aeb3357308145227b28 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sat, 30 Mar 2024 08:27:20 +0000 Subject: [PATCH] Release krata v0.0.1, krata-oci v0.0.1, krata-xenstore v0.0.1, krata-guest v0.0.1, krata-xencall v0.0.1, krata-xenclient v0.0.1, krata-xenevtchn v0.0.1, krata-xengnt v0.0.1, krata-runtime v0.0.1, krata-daemon v0.0.1, krata-network v0.0.1, krata-ctl v0.0.1 --- crates/ctl/Cargo.toml | 4 ++-- crates/daemon/Cargo.toml | 6 +++--- crates/guest/Cargo.toml | 6 +++--- crates/krata/Cargo.toml | 2 +- crates/network/Cargo.toml | 4 ++-- crates/oci/Cargo.toml | 2 +- crates/runtime/Cargo.toml | 14 +++++++------- crates/xen/xencall/Cargo.toml | 2 +- crates/xen/xenclient/Cargo.toml | 6 +++--- crates/xen/xenevtchn/Cargo.toml | 2 +- crates/xen/xengnt/Cargo.toml | 2 +- crates/xen/xenstore/Cargo.toml | 2 +- 12 files changed, 26 insertions(+), 26 deletions(-) diff --git a/crates/ctl/Cargo.toml b/crates/ctl/Cargo.toml index 9db92e3..4c50455 100644 --- a/crates/ctl/Cargo.toml +++ b/crates/ctl/Cargo.toml @@ -2,7 +2,7 @@ name = "krata-ctl" description = "Command-line tool to control the krata hypervisor" license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021" @@ -16,7 +16,7 @@ cli-tables = { workspace = true } crossterm = { workspace = true } ctrlc = { workspace = true, features = ["termination"] } env_logger = { workspace = true } -krata = { path = "../krata", version = "0.0.1" } +krata = { path = "../krata", version = "^0.0.1" } log = { workspace = true } prost-reflect = { workspace = true, features = ["serde"] } serde_json = { workspace = true } diff --git a/crates/daemon/Cargo.toml b/crates/daemon/Cargo.toml index 9952e80..5e731c2 100644 --- a/crates/daemon/Cargo.toml +++ b/crates/daemon/Cargo.toml @@ -2,7 +2,7 @@ name = "krata-daemon" description = "Daemon for the krata hypervisor." license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021" @@ -16,8 +16,8 @@ bytes = { workspace = true } clap = { workspace = true } env_logger = { workspace = true } futures = { workspace = true } -krata = { path = "../krata", version = "0.0.1" } -krata-runtime = { path = "../runtime", version = "0.0.1" } +krata = { path = "../krata", version = "^0.0.1" } +krata-runtime = { path = "../runtime", version = "^0.0.1" } log = { workspace = true } prost = { workspace = true } redb = { workspace = true } diff --git a/crates/guest/Cargo.toml b/crates/guest/Cargo.toml index 2923550..f501237 100644 --- a/crates/guest/Cargo.toml +++ b/crates/guest/Cargo.toml @@ -2,7 +2,7 @@ name = "krata-guest" description = "Guest services for the krata hypervisor." license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021" @@ -13,8 +13,8 @@ anyhow = { workspace = true } env_logger = { workspace = true } futures = { workspace = true } ipnetwork = { workspace = true } -krata = { path = "../krata", version = "0.0.1" } -krata-xenstore = { path = "../xen/xenstore", version = "0.0.1" } +krata = { path = "../krata", version = "^0.0.1" } +krata-xenstore = { path = "../xen/xenstore", version = "^0.0.1" } libc = { workspace = true } log = { workspace = true } nix = { workspace = true, features = ["process"] } diff --git a/crates/krata/Cargo.toml b/crates/krata/Cargo.toml index a845dcb..e31f4e8 100644 --- a/crates/krata/Cargo.toml +++ b/crates/krata/Cargo.toml @@ -2,7 +2,7 @@ name = "krata" description = "Client library and common services for the krata hypervisor." license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021" diff --git a/crates/network/Cargo.toml b/crates/network/Cargo.toml index fddcf9b..6a0902d 100644 --- a/crates/network/Cargo.toml +++ b/crates/network/Cargo.toml @@ -2,7 +2,7 @@ name = "krata-network" description = "Networking services for the krata hypervisor." license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021" @@ -16,7 +16,7 @@ clap = { workspace = true } env_logger = { workspace = true } etherparse = { workspace = true } futures = { workspace = true } -krata = { path = "../krata", version = "0.0.1" } +krata = { path = "../krata", version = "^0.0.1" } krata-advmac = { workspace = true } libc = { workspace = true } log = { workspace = true } diff --git a/crates/oci/Cargo.toml b/crates/oci/Cargo.toml index 108f477..2e88e41 100644 --- a/crates/oci/Cargo.toml +++ b/crates/oci/Cargo.toml @@ -2,7 +2,7 @@ name = "krata-oci" description = "OCI services for the krata hypervisor." license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021" diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index 8da5a92..d0a5b25 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -2,7 +2,7 @@ name = "krata-runtime" description = "Runtime for running guests on the krata hypervisor." license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021" @@ -12,18 +12,18 @@ resolver = "2" anyhow = { workspace = true } backhand = { workspace = true } ipnetwork = { workspace = true } -krata = { path = "../krata", version = "0.0.1" } +krata = { path = "../krata", version = "^0.0.1" } krata-advmac = { workspace = true } -krata-oci = { path = "../oci", version = "0.0.1" } +krata-oci = { path = "../oci", version = "^0.0.1" } log = { workspace = true } loopdev-3 = { workspace = true } serde_json = { workspace = true } tokio = { workspace = true } uuid = { workspace = true } -krata-xenclient = { path = "../xen/xenclient", version = "0.0.1" } -krata-xenevtchn = { path = "../xen/xenevtchn", version = "0.0.1" } -krata-xengnt = { path = "../xen/xengnt", version = "0.0.1" } -krata-xenstore = { path = "../xen/xenstore", version = "0.0.1" } +krata-xenclient = { path = "../xen/xenclient", version = "^0.0.1" } +krata-xenevtchn = { path = "../xen/xenevtchn", version = "^0.0.1" } +krata-xengnt = { path = "../xen/xengnt", version = "^0.0.1" } +krata-xenstore = { path = "../xen/xenstore", version = "^0.0.1" } [lib] name = "kratart" diff --git a/crates/xen/xencall/Cargo.toml b/crates/xen/xencall/Cargo.toml index 75d3b28..43e860d 100644 --- a/crates/xen/xencall/Cargo.toml +++ b/crates/xen/xencall/Cargo.toml @@ -2,7 +2,7 @@ name = "krata-xencall" description = "An implementation of direct interfacing to xen privcmd for krata." license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021" diff --git a/crates/xen/xenclient/Cargo.toml b/crates/xen/xenclient/Cargo.toml index 5e743a4..7b4b62c 100644 --- a/crates/xen/xenclient/Cargo.toml +++ b/crates/xen/xenclient/Cargo.toml @@ -2,7 +2,7 @@ name = "krata-xenclient" description = "An implementation of Xen userspace for krata." license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021" @@ -13,8 +13,8 @@ elf = { workspace = true } flate2 = { workspace = true } libc = { workspace = true } log = { workspace = true } -krata-xencall = { path = "../xencall", version = "0.0.1" } -krata-xenstore = { path = "../xenstore", version = "0.0.1" } +krata-xencall = { path = "../xencall", version = "^0.0.1" } +krata-xenstore = { path = "../xenstore", version = "^0.0.1" } memchr = { workspace = true } slice-copy = { workspace = true } thiserror = { workspace = true } diff --git a/crates/xen/xenevtchn/Cargo.toml b/crates/xen/xenevtchn/Cargo.toml index 644d928..486ae59 100644 --- a/crates/xen/xenevtchn/Cargo.toml +++ b/crates/xen/xenevtchn/Cargo.toml @@ -2,7 +2,7 @@ name = "krata-xenevtchn" description = "An implementation of xen evtchn for krata." license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021" diff --git a/crates/xen/xengnt/Cargo.toml b/crates/xen/xengnt/Cargo.toml index 9b4c8aa..69f938e 100644 --- a/crates/xen/xengnt/Cargo.toml +++ b/crates/xen/xengnt/Cargo.toml @@ -2,7 +2,7 @@ name = "krata-xengnt" description = "An implementation of xen grant interfaces for krata." license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021" diff --git a/crates/xen/xenstore/Cargo.toml b/crates/xen/xenstore/Cargo.toml index 9295437..40e4a97 100644 --- a/crates/xen/xenstore/Cargo.toml +++ b/crates/xen/xenstore/Cargo.toml @@ -2,7 +2,7 @@ name = "krata-xenstore" description = "A client that interacts with xenstore for krata." license.workspace = true -version.workspace = true +version= "0.0.1" homepage.workspace = true repository.workspace = true edition = "2021"