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