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
96 changes: 58 additions & 38 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 src/acpi-tables/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ license = "Apache-2.0"

[dependencies]
displaydoc = "0.2.5"
thiserror = "1.0.67"
vm-memory = { version = "0.16.0", features = ["backend-mmap", "backend-bitmap"] }
zerocopy = { version = "0.8.8", features = ["derive"] }
thiserror = "2.0.3"
vm-memory = { version = "0.16.1", features = ["backend-mmap", "backend-bitmap"] }
zerocopy = { version = "0.8.9", features = ["derive"] }

[lib]
bench = false
Expand Down
4 changes: 2 additions & 2 deletions src/cpu-template-helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ bench = false
[dependencies]
clap = { version = "4.5.20", features = ["derive", "string"] }
displaydoc = "0.2.5"
libc = "0.2.161"
libc = "0.2.162"
log-instrument = { path = "../log-instrument", optional = true }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
thiserror = "1.0.67"
thiserror = "2.0.3"

vmm = { path = "../vmm" }
vmm-sys-util = "0.12.1"
Expand Down
6 changes: 3 additions & 3 deletions src/firecracker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ bench = false
[dependencies]
displaydoc = "0.2.5"
event-manager = "0.4.0"
libc = "0.2.161"
libc = "0.2.162"
log-instrument = { path = "../log-instrument", optional = true }
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }

seccompiler = { path = "../seccompiler" }
serde = { version = "1.0.214", features = ["derive"] }
serde_derive = "1.0.136"
serde_json = "1.0.132"
thiserror = "1.0.67"
thiserror = "2.0.3"
timerfd = "1.6.0"
utils = { path = "../utils" }
vmm = { path = "../vmm" }
vmm-sys-util = { version = "0.12.1", features = ["with-serde"] }

[dev-dependencies]
cargo_toml = "0.20.5"
libc = "0.2.161"
libc = "0.2.162"
regex = { version = "1.11.1", default-features = false, features = ["std", "unicode-perl"] }

# Dev-Dependencies for uffd examples
Expand Down
2 changes: 1 addition & 1 deletion src/firecracker/src/api_server/parsed_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ pub(crate) enum RequestError {
#[error("API Resource IDs can only contain alphanumeric characters and underscores.")]
InvalidID,
// The HTTP method & request path combination is not valid.
#[error("Invalid request method and/or path: {} {0}.", .1.to_str())]
#[error("Invalid request method and/or path: {} {}.", .1.to_str(), .0)]
InvalidPathMethod(String, Method),
// An error occurred when deserializing the json body of a request.
#[error("An error occurred when deserializing the json body of a request: {0}.")]
Expand Down
4 changes: 2 additions & 2 deletions src/jailer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ name = "jailer"
bench = false

[dependencies]
libc = "0.2.161"
libc = "0.2.162"
log-instrument = { path = "../log-instrument", optional = true }
nix = { version = "0.29.0", default-features = false, features = ["dir"] }
regex = { version = "1.11.1", default-features = false, features = ["std"] }
thiserror = "1.0.67"
thiserror = "2.0.3"
vmm-sys-util = "0.12.1"

utils = { path = "../utils" }
Expand Down
4 changes: 2 additions & 2 deletions src/rebase-snap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ bench = false

[dependencies]
displaydoc = "0.2.5"
libc = "0.2.161"
libc = "0.2.162"
log-instrument = { path = "../log-instrument", optional = true }
thiserror = "1.0.67"
thiserror = "2.0.3"
vmm-sys-util = "0.12.1"

utils = { path = "../utils" }
Expand Down
4 changes: 2 additions & 2 deletions src/seccompiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ bench = false
[dependencies]
bincode = "1.2.1"
displaydoc = "0.2.5"
libc = "0.2.161"
libc = "0.2.162"
log-instrument = { path = "../log-instrument", optional = true }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
thiserror = "1.0.67"
thiserror = "2.0.3"

utils = { path = "../utils" }

Expand Down
4 changes: 2 additions & 2 deletions src/snapshot-editor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ clap = { version = "4.5.20", features = ["derive", "string"] }
displaydoc = "0.2.5"

fc_utils = { package = "utils", path = "../utils" }
libc = "0.2.161"
libc = "0.2.162"
log-instrument = { path = "../log-instrument", optional = true }
semver = "1.0.23"
thiserror = "1.0.67"
thiserror = "2.0.3"
vmm = { path = "../vmm" }
vmm-sys-util = "0.12.1"

Expand Down
Loading
Loading