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

This commit is contained in:
Alex Zenla
2024-03-30 08:27:20 +00:00
parent ee639af2ed
commit efba8b1316
12 changed files with 26 additions and 26 deletions

View File

@ -2,7 +2,7 @@
name = "krata-ctl" name = "krata-ctl"
description = "Command-line tool to control the krata hypervisor" description = "Command-line tool to control the krata hypervisor"
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"
@ -16,7 +16,7 @@ cli-tables = { workspace = true }
crossterm = { workspace = true } crossterm = { workspace = true }
ctrlc = { workspace = true, features = ["termination"] } ctrlc = { workspace = true, features = ["termination"] }
env_logger = { workspace = true } env_logger = { workspace = true }
krata = { path = "../krata", version = "0.0.1" } krata = { path = "../krata", version = "^0.0.1" }
log = { workspace = true } log = { workspace = true }
prost-reflect = { workspace = true, features = ["serde"] } prost-reflect = { workspace = true, features = ["serde"] }
serde_json = { workspace = true } serde_json = { workspace = true }

View File

@ -2,7 +2,7 @@
name = "krata-daemon" name = "krata-daemon"
description = "Daemon for the krata hypervisor." description = "Daemon for the krata hypervisor."
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"
@ -16,8 +16,8 @@ bytes = { workspace = true }
clap = { workspace = true } clap = { workspace = true }
env_logger = { workspace = true } env_logger = { workspace = true }
futures = { workspace = true } futures = { workspace = true }
krata = { path = "../krata", version = "0.0.1" } krata = { path = "../krata", version = "^0.0.1" }
krata-runtime = { path = "../runtime", version = "0.0.1" } krata-runtime = { path = "../runtime", version = "^0.0.1" }
log = { workspace = true } log = { workspace = true }
prost = { workspace = true } prost = { workspace = true }
redb = { workspace = true } redb = { workspace = true }

View File

@ -2,7 +2,7 @@
name = "krata-guest" name = "krata-guest"
description = "Guest services for the krata hypervisor." description = "Guest services for the krata hypervisor."
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"
@ -13,8 +13,8 @@ anyhow = { workspace = true }
env_logger = { workspace = true } env_logger = { workspace = true }
futures = { workspace = true } futures = { workspace = true }
ipnetwork = { workspace = true } ipnetwork = { workspace = true }
krata = { path = "../krata", version = "0.0.1" } krata = { path = "../krata", version = "^0.0.1" }
krata-xenstore = { path = "../xen/xenstore", version = "0.0.1" } krata-xenstore = { path = "../xen/xenstore", version = "^0.0.1" }
libc = { workspace = true } libc = { workspace = true }
log = { workspace = true } log = { workspace = true }
nix = { workspace = true, features = ["process"] } nix = { workspace = true, features = ["process"] }

View File

@ -2,7 +2,7 @@
name = "krata" name = "krata"
description = "Client library and common services for the krata hypervisor." description = "Client library and common services for the krata hypervisor."
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"

View File

@ -2,7 +2,7 @@
name = "krata-network" name = "krata-network"
description = "Networking services for the krata hypervisor." description = "Networking services for the krata hypervisor."
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"
@ -16,7 +16,7 @@ clap = { workspace = true }
env_logger = { workspace = true } env_logger = { workspace = true }
etherparse = { workspace = true } etherparse = { workspace = true }
futures = { workspace = true } futures = { workspace = true }
krata = { path = "../krata", version = "0.0.1" } krata = { path = "../krata", version = "^0.0.1" }
krata-advmac = { workspace = true } krata-advmac = { workspace = true }
libc = { workspace = true } libc = { workspace = true }
log = { workspace = true } log = { workspace = true }

View File

@ -2,7 +2,7 @@
name = "krata-oci" name = "krata-oci"
description = "OCI services for the krata hypervisor." description = "OCI services for the krata hypervisor."
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"

View File

@ -2,7 +2,7 @@
name = "krata-runtime" name = "krata-runtime"
description = "Runtime for running guests on the krata hypervisor." description = "Runtime for running guests on the krata hypervisor."
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"
@ -12,18 +12,18 @@ resolver = "2"
anyhow = { workspace = true } anyhow = { workspace = true }
backhand = { workspace = true } backhand = { workspace = true }
ipnetwork = { workspace = true } ipnetwork = { workspace = true }
krata = { path = "../krata", version = "0.0.1" } krata = { path = "../krata", version = "^0.0.1" }
krata-advmac = { workspace = true } krata-advmac = { workspace = true }
krata-oci = { path = "../oci", version = "0.0.1" } krata-oci = { path = "../oci", version = "^0.0.1" }
log = { workspace = true } log = { workspace = true }
loopdev-3 = { workspace = true } loopdev-3 = { workspace = true }
serde_json = { workspace = true } serde_json = { workspace = true }
tokio = { workspace = true } tokio = { workspace = true }
uuid = { workspace = true } uuid = { workspace = true }
krata-xenclient = { path = "../xen/xenclient", version = "0.0.1" } krata-xenclient = { path = "../xen/xenclient", version = "^0.0.1" }
krata-xenevtchn = { path = "../xen/xenevtchn", version = "0.0.1" } krata-xenevtchn = { path = "../xen/xenevtchn", version = "^0.0.1" }
krata-xengnt = { path = "../xen/xengnt", version = "0.0.1" } krata-xengnt = { path = "../xen/xengnt", version = "^0.0.1" }
krata-xenstore = { path = "../xen/xenstore", version = "0.0.1" } krata-xenstore = { path = "../xen/xenstore", version = "^0.0.1" }
[lib] [lib]
name = "kratart" name = "kratart"

View File

@ -2,7 +2,7 @@
name = "krata-xencall" name = "krata-xencall"
description = "An implementation of direct interfacing to xen privcmd for krata." description = "An implementation of direct interfacing to xen privcmd for krata."
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"

View File

@ -2,7 +2,7 @@
name = "krata-xenclient" name = "krata-xenclient"
description = "An implementation of Xen userspace for krata." description = "An implementation of Xen userspace for krata."
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"
@ -13,8 +13,8 @@ elf = { workspace = true }
flate2 = { workspace = true } flate2 = { workspace = true }
libc = { workspace = true } libc = { workspace = true }
log = { workspace = true } log = { workspace = true }
krata-xencall = { path = "../xencall", version = "0.0.1" } krata-xencall = { path = "../xencall", version = "^0.0.1" }
krata-xenstore = { path = "../xenstore", version = "0.0.1" } krata-xenstore = { path = "../xenstore", version = "^0.0.1" }
memchr = { workspace = true } memchr = { workspace = true }
slice-copy = { workspace = true } slice-copy = { workspace = true }
thiserror = { workspace = true } thiserror = { workspace = true }

View File

@ -2,7 +2,7 @@
name = "krata-xenevtchn" name = "krata-xenevtchn"
description = "An implementation of xen evtchn for krata." description = "An implementation of xen evtchn for krata."
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"

View File

@ -2,7 +2,7 @@
name = "krata-xengnt" name = "krata-xengnt"
description = "An implementation of xen grant interfaces for krata." description = "An implementation of xen grant interfaces for krata."
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"

View File

@ -2,7 +2,7 @@
name = "krata-xenstore" name = "krata-xenstore"
description = "A client that interacts with xenstore for krata." description = "A client that interacts with xenstore for krata."
license.workspace = true license.workspace = true
version.workspace = true version= "0.0.1"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
edition = "2021" edition = "2021"