Skip to content
Open
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
84 changes: 42 additions & 42 deletions Cargo.lock

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

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ lto = true
panic = "abort"

[patch.crates-io]
# TODO: Using this patch until a version > 4.0 gets published.
linux-loader = { git = "https://github.com/rust-vmm/linux-loader.git", rev = "9a9f071" }
# TODO: Update with https://github.com/rust-vmm/linux-loader.git hash of commit
# "add as_string() to the Cmdline crate"
linux-loader = { git = "https://github.com/vitamin-v-software/linux-loader.git", rev = "76aefef" }
2 changes: 1 addition & 1 deletion src/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ clap = "3.2.17"
vmm = { path = "../vmm" }

[dev-dependencies]
linux-loader = "0.4.0"
linux-loader = "0.10.0"
2 changes: 1 addition & 1 deletion src/api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ mod tests {
])
.is_err());

let mut foo_cmdline = Cmdline::new(4096);
let mut foo_cmdline = Cmdline::new(4096).unwrap();
foo_cmdline.insert_str("\"foo=bar bar=foo\"").unwrap();

// OK.
Expand Down
2 changes: 1 addition & 1 deletion src/arch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2018"

[dependencies]
vm-fdt = "0.2.0"
vm-memory = "0.7.0"
vm-memory = "0.13.1"
16 changes: 8 additions & 8 deletions src/devices/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ edition = "2018"
license = "Apache-2.0 OR BSD-3-Clause"

[dependencies]
event-manager = { version = "0.2.1", features = ["remote_endpoint"] }
kvm-ioctls = "0.11.0"
event-manager = { version = "0.3.0", features = ["remote_endpoint"] }
kvm-ioctls = "0.13.0"
libc = "0.2.76"
linux-loader = "0.4.0"
log = "0.4.6"
vm-memory = "0.7.0"
linux-loader = "0.10.0"
log = "*"
vm-memory = "0.13.1"
vm-superio = "0.5.0"
vmm-sys-util = "0.8.0"
vmm-sys-util = "0.11.2"
vm-device = "0.1.0"

virtio-blk = { git = "https://github.com/rust-vmm/vm-virtio.git", features = ["backend-stdio"] }
Expand All @@ -23,5 +23,5 @@ virtio-queue = { git = "https://github.com/rust-vmm/vm-virtio.git"}
utils = { path = "../utils" }

[dev-dependencies]
vm-memory = { version = "0.7.0", features = ["backend-mmap"] }
kvm-bindings = "0.5.0"
vm-memory = { version = "0.13.1", features = ["backend-mmap"] }
kvm-bindings = "0.6.0"
Loading