mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 12:50:54 +00:00
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:
parent
ee639af2ed
commit
efba8b1316
@ -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 }
|
||||
|
@ -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 }
|
||||
|
@ -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"] }
|
||||
|
@ -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"
|
||||
|
@ -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 }
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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 }
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user