Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src/arch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun_arch"
version = "0.1.10"
version = "0.1.11"
authors = ["The Chromium OS Authors"]
edition = "2021"
license = "Apache-2.0 AND BSD-3-Clause"
Expand All @@ -18,14 +18,14 @@ libc = ">=0.2.39"
vm-memory = { version = "~0.16", features = ["backend-mmap"] }
vmm-sys-util = ">= 0.14"

arch_gen = { package = "msb_krun_arch_gen", version = "0.1.10", path = "../arch_gen" }
smbios = { package = "msb_krun_smbios", version = "0.1.10", path = "../smbios" }
utils = { package = "msb_krun_utils", version = "0.1.10", path = "../utils" }
arch_gen = { package = "msb_krun_arch_gen", version = "0.1.11", path = "../arch_gen" }
smbios = { package = "msb_krun_smbios", version = "0.1.11", path = "../smbios" }
utils = { package = "msb_krun_utils", version = "0.1.11", path = "../utils" }

[target.'cfg(target_os = "linux")'.dependencies]
kvm-bindings = { version = ">=0.11", features = ["fam-wrappers"] }
kvm-ioctls = ">=0.21"
tdx = { version = "0.1.0", optional = true }

[dev-dependencies]
utils = { package = "msb_krun_utils", version = "0.1.10", path = "../utils" }
utils = { package = "msb_krun_utils", version = "0.1.11", path = "../utils" }
2 changes: 1 addition & 1 deletion src/arch_gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun_arch_gen"
version = "0.1.10"
version = "0.1.11"
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
edition = "2021"
license = "Apache-2.0 AND BSD-3-Clause"
Expand Down
4 changes: 2 additions & 2 deletions src/aws_nitro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun_aws_nitro"
version = "0.1.10"
version = "0.1.11"
edition = "2021"
license = "Apache-2.0"
description = "AWS Nitro Enclaves support for msb_krun microVMs"
Expand All @@ -15,7 +15,7 @@ nix = { version = "0.30", features = ["poll"] }
tar = "0.4"
vsock = "0.5"

devices = { package = "msb_krun_devices", version = "0.1.10", path = "../devices" }
devices = { package = "msb_krun_devices", version = "0.1.11", path = "../devices" }
log = "0.4"
signal-hook = "0.3"

Expand Down
2 changes: 1 addition & 1 deletion src/cpuid/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun_cpuid"
version = "0.1.10"
version = "0.1.11"
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
edition = "2021"
license = "Apache-2.0 AND BSD-3-Clause"
Expand Down
18 changes: 9 additions & 9 deletions src/devices/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun_devices"
version = "0.1.10"
version = "0.1.11"
authors = ["The Chromium OS Authors"]
edition = "2021"
license = "Apache-2.0 AND BSD-3-Clause"
Expand Down Expand Up @@ -35,21 +35,21 @@ thiserror = { version = "2.0", optional = true }
virtio-bindings = "0.2.0"
vm-memory = { version = "~0.16", features = ["backend-mmap"] }
zerocopy = { version = "0.8.26", optional = true, features = ["derive"] }
krun_display = { package = "msb_krun_display", version = "0.1.10", path = "../krun_display", optional = true, features = ["bindgen_clang_runtime"] }
krun_input = { package = "msb_krun_input", version = "0.1.10", path = "../krun_input", features = ["bindgen_clang_runtime"], optional = true }
krun_display = { package = "msb_krun_display", version = "0.1.11", path = "../krun_display", optional = true, features = ["bindgen_clang_runtime"] }
krun_input = { package = "msb_krun_input", version = "0.1.11", path = "../krun_input", features = ["bindgen_clang_runtime"], optional = true }

arch = { package = "msb_krun_arch", version = "0.1.10", path = "../arch" }
utils = { package = "msb_krun_utils", version = "0.1.10", path = "../utils" }
polly = { package = "msb_krun_polly", version = "0.1.10", path = "../polly" }
rutabaga_gfx = { package = "msb_krun_rutabaga_gfx", version = "0.1.10", path = "../rutabaga_gfx", features = ["virgl_renderer", "virgl_renderer_next"], optional = true }
arch = { package = "msb_krun_arch", version = "0.1.11", path = "../arch" }
utils = { package = "msb_krun_utils", version = "0.1.11", path = "../utils" }
polly = { package = "msb_krun_polly", version = "0.1.11", path = "../polly" }
rutabaga_gfx = { package = "msb_krun_rutabaga_gfx", version = "0.1.11", path = "../rutabaga_gfx", features = ["virgl_renderer", "virgl_renderer_next"], optional = true }
imago = { version = "0.2.1", features = ["sync-wrappers", "vm-memory"] }

[target.'cfg(target_os = "macos")'.dependencies]
hvf = { package = "msb_krun_hvf", version = "0.1.10", path = "../hvf" }
hvf = { package = "msb_krun_hvf", version = "0.1.11", path = "../hvf" }
lru = ">=0.9"

[target.'cfg(target_os = "linux")'.dependencies]
rutabaga_gfx = { package = "msb_krun_rutabaga_gfx", version = "0.1.10", path = "../rutabaga_gfx", features = ["x"], optional = true }
rutabaga_gfx = { package = "msb_krun_rutabaga_gfx", version = "0.1.11", path = "../rutabaga_gfx", features = ["x"], optional = true }
caps = "0.5.5"
kvm-bindings = { version = ">=0.11", features = ["fam-wrappers"] }
kvm-ioctls = ">=0.21"
Expand Down
4 changes: 2 additions & 2 deletions src/hvf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun_hvf"
version = "0.1.10"
version = "0.1.11"
authors = ["Sergio Lopez <slp@sinrega.org>"]
edition = "2021"
build = "build.rs"
Expand All @@ -13,4 +13,4 @@ crossbeam-channel = ">=0.5.15"
libloading = "0.8"
log = "0.4.0"

arch = { package = "msb_krun_arch", version = "0.1.10", path = "../arch" }
arch = { package = "msb_krun_arch", version = "0.1.11", path = "../arch" }
4 changes: 2 additions & 2 deletions src/kernel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun_kernel"
version = "0.1.10"
version = "0.1.11"
edition = "2021"
license = "Apache-2.0 AND BSD-3-Clause"
description = "Kernel loading utilities for msb_krun microVMs"
Expand All @@ -9,4 +9,4 @@ repository = "https://github.com/containers/libkrun"
[dependencies]
vm-memory = { version = "~0.16", features = ["backend-mmap"] }

utils = { package = "msb_krun_utils", version = "0.1.10", path = "../utils" }
utils = { package = "msb_krun_utils", version = "0.1.11", path = "../utils" }
18 changes: 9 additions & 9 deletions src/krun/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun"
version = "0.1.10"
version = "0.1.11"
authors = ["The libkrun Authors"]
edition = "2021"
description = "Native Rust API for libkrun microVMs"
Expand All @@ -26,21 +26,21 @@ libc = ">=0.2.39"
libloading = "0.8"
log = "0.4.0"

devices = { package = "msb_krun_devices", version = "0.1.10", path = "../devices" }
polly = { package = "msb_krun_polly", version = "0.1.10", path = "../polly" }
utils = { package = "msb_krun_utils", version = "0.1.10", path = "../utils" }
vmm = { package = "msb_krun_vmm", version = "0.1.10", path = "../vmm" }
devices = { package = "msb_krun_devices", version = "0.1.11", path = "../devices" }
polly = { package = "msb_krun_polly", version = "0.1.11", path = "../polly" }
utils = { package = "msb_krun_utils", version = "0.1.11", path = "../utils" }
vmm = { package = "msb_krun_vmm", version = "0.1.11", path = "../vmm" }

# Optional dependencies
krun_display = { package = "msb_krun_display", version = "0.1.10", path = "../krun_display", optional = true, features = ["bindgen_clang_runtime"] }
krun_input = { package = "msb_krun_input", version = "0.1.10", path = "../krun_input", optional = true, features = ["bindgen_clang_runtime"] }
krun_display = { package = "msb_krun_display", version = "0.1.11", path = "../krun_display", optional = true, features = ["bindgen_clang_runtime"] }
krun_input = { package = "msb_krun_input", version = "0.1.11", path = "../krun_input", optional = true, features = ["bindgen_clang_runtime"] }

[target.'cfg(target_os = "macos")'.dependencies]
hvf = { package = "msb_krun_hvf", version = "0.1.10", path = "../hvf" }
hvf = { package = "msb_krun_hvf", version = "0.1.11", path = "../hvf" }

[target.'cfg(target_os = "linux")'.dependencies]
kvm-bindings = { version = ">=0.11", features = ["fam-wrappers"] }
kvm-ioctls = ">=0.21"
vm-memory = { version = "~0.16", features = ["backend-mmap"] }
aws-nitro = { package = "msb_krun_aws_nitro", version = "0.1.10", path = "../aws_nitro", optional = true }
aws-nitro = { package = "msb_krun_aws_nitro", version = "0.1.11", path = "../aws_nitro", optional = true }
nitro-enclaves = { version = "0.6.0", optional = true }
2 changes: 1 addition & 1 deletion src/krun_display/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "msb_krun_display"
description = "Rust bindings for implemeting display backends in Rust for libkrun"
version = "0.1.10"
version = "0.1.11"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/containers/libkrun"
Expand Down
2 changes: 1 addition & 1 deletion src/krun_input/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "msb_krun_input"
description = "Rust bindings for implementing input backends in Rust for libkrun"
version = "0.1.10"
version = "0.1.11"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/containers/libkrun"
Expand Down
4 changes: 2 additions & 2 deletions src/polly/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun_polly"
version = "0.1.10"
version = "0.1.11"
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -9,4 +9,4 @@ repository = "https://github.com/containers/libkrun"

[dependencies]
libc = ">=0.2.39"
utils = { package = "msb_krun_utils", version = "0.1.10", path = "../utils" }
utils = { package = "msb_krun_utils", version = "0.1.11", path = "../utils" }
2 changes: 1 addition & 1 deletion src/rutabaga_gfx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun_rutabaga_gfx"
version = "0.1.10"
version = "0.1.11"
authors = ["The ChromiumOS Authors + Android Open Source Project"]
edition = "2021"
description = "[highly unstable] Handling virtio-gpu protocols"
Expand Down
2 changes: 1 addition & 1 deletion src/smbios/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun_smbios"
version = "0.1.10"
version = "0.1.11"
edition = "2021"
license = "Apache-2.0"
description = "SMBIOS table generation for msb_krun microVMs"
Expand Down
2 changes: 1 addition & 1 deletion src/utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "msb_krun_utils"
version = "0.1.10"
version = "0.1.11"
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
edition = "2021"
license = "Apache-2.0 AND BSD-3-Clause"
Expand Down
Loading
Loading