diff --git a/crates/ctl/Cargo.toml b/crates/ctl/Cargo.toml index 2eae93f..ba25781 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.3" 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.3" } +krata = { path = "../krata", version = "^0.0.3" } 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 a1f94f5..bc1770f 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.3" 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.3" } -krata-runtime = { path = "../runtime", version = "0.0.3" } +krata = { path = "../krata", version = "^0.0.3" } +krata-runtime = { path = "../runtime", version = "^0.0.3" } log = { workspace = true } prost = { workspace = true } redb = { workspace = true } diff --git a/crates/guest/Cargo.toml b/crates/guest/Cargo.toml index b7dd335..b1ab93c 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.3" 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.3" } -krata-xenstore = { path = "../xen/xenstore", version = "0.0.3" } +krata = { path = "../krata", version = "^0.0.3" } +krata-xenstore = { path = "../xen/xenstore", version = "^0.0.3" } libc = { workspace = true } log = { workspace = true } nix = { workspace = true, features = ["ioctl", "process", "fs"] } diff --git a/crates/krata/Cargo.toml b/crates/krata/Cargo.toml index a845dcb..5232223 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.3" homepage.workspace = true repository.workspace = true edition = "2021" diff --git a/crates/network/Cargo.toml b/crates/network/Cargo.toml index 70022ae..b58c6c5 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.3" 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.3" } +krata = { path = "../krata", version = "^0.0.3" } krata-advmac = { workspace = true } libc = { workspace = true } log = { workspace = true } diff --git a/crates/oci/Cargo.toml b/crates/oci/Cargo.toml index 108f477..c60284d 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.3" homepage.workspace = true repository.workspace = true edition = "2021" diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index b330981..19fd959 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.3" 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.3" } +krata = { path = "../krata", version = "^0.0.3" } krata-advmac = { workspace = true } -krata-oci = { path = "../oci", version = "0.0.3" } +krata-oci = { path = "../oci", version = "^0.0.3" } 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.3" } -krata-xenevtchn = { path = "../xen/xenevtchn", version = "0.0.3" } -krata-xengnt = { path = "../xen/xengnt", version = "0.0.3" } -krata-xenstore = { path = "../xen/xenstore", version = "0.0.3" } +krata-xenclient = { path = "../xen/xenclient", version = "^0.0.3" } +krata-xenevtchn = { path = "../xen/xenevtchn", version = "^0.0.3" } +krata-xengnt = { path = "../xen/xengnt", version = "^0.0.3" } +krata-xenstore = { path = "../xen/xenstore", version = "^0.0.3" } [lib] name = "kratart" diff --git a/crates/xen/xencall/Cargo.toml b/crates/xen/xencall/Cargo.toml index 75d3b28..1a32c0b 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.3" homepage.workspace = true repository.workspace = true edition = "2021" diff --git a/crates/xen/xenclient/Cargo.toml b/crates/xen/xenclient/Cargo.toml index 6c0e3b2..79c4ef0 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.3" 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.3" } -krata-xenstore = { path = "../xenstore", version = "0.0.3" } +krata-xencall = { path = "../xencall", version = "^0.0.3" } +krata-xenstore = { path = "../xenstore", version = "^0.0.3" } 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..86572cb 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.3" homepage.workspace = true repository.workspace = true edition = "2021" diff --git a/crates/xen/xengnt/Cargo.toml b/crates/xen/xengnt/Cargo.toml index 9b4c8aa..4ace39c 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.3" homepage.workspace = true repository.workspace = true edition = "2021" diff --git a/crates/xen/xenstore/Cargo.toml b/crates/xen/xenstore/Cargo.toml index 9295437..8b4e75b 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.3" homepage.workspace = true repository.workspace = true edition = "2021"