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
152 changes: 62 additions & 90 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/acpi-tables/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ bench = false

[dependencies]
displaydoc = "0.2.5"
thiserror = "2.0.16"
thiserror = "2.0.17"
vm-memory = { version = "0.16.2", features = ["backend-mmap", "backend-bitmap"] }
zerocopy = { version = "0.8.27", features = ["derive"] }

Expand Down
2 changes: 1 addition & 1 deletion src/clippy-tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ bench = false
clap = { version = "4.5.48", features = ["derive"] }
itertools = "0.14.0"
proc-macro2 = { version = "1.0.101", features = ["span-locations"] }
quote = "1.0.40"
quote = "1.0.41"
syn = { version = "2.0.106", features = ["full", "extra-traits", "visit", "visit-mut", "printing"] }
walkdir = "2.5.0"

Expand Down
6 changes: 3 additions & 3 deletions src/cpu-template-helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ tracing = ["log-instrument", "vmm/tracing"]
[dependencies]
clap = { version = "4.5.48", features = ["derive", "string"] }
displaydoc = "0.2.5"
libc = "0.2.175"
libc = "0.2.176"
log-instrument = { path = "../log-instrument", optional = true }
serde = { version = "1.0.226", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
thiserror = "2.0.16"
thiserror = "2.0.17"

vmm = { path = "../vmm" }
vmm-sys-util = "0.14.0"
Expand Down
14 changes: 7 additions & 7 deletions src/firecracker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,33 @@ gdb = ["vmm/gdb"]
[dependencies]
displaydoc = "0.2.5"
event-manager = "0.4.1"
libc = "0.2.175"
libc = "0.2.176"
log-instrument = { path = "../log-instrument", optional = true }
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
serde = { version = "1.0.226", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_derive = "1.0.136"
serde_json = "1.0.145"
thiserror = "2.0.16"
thiserror = "2.0.17"
timerfd = "1.6.0"
utils = { path = "../utils" }
vmm = { path = "../vmm" }
vmm-sys-util = { version = "0.14.0", features = ["with-serde"] }

[build-dependencies]
seccompiler = { path = "../seccompiler" }
serde = { version = "1.0.226" }
serde = { version = "1.0.228" }
serde_json = "1.0.145"

[dev-dependencies]
cargo_toml = "0.22.3"
libc = "0.2.175"
regex = { version = "1.11.2", default-features = false, features = [
libc = "0.2.176"
regex = { version = "1.11.3", default-features = false, features = [
"std",
"unicode-perl",
] }

# Dev-Dependencies for uffd examples
serde = { version = "1.0.226", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
userfaultfd = "0.9.0"

[lints]
Expand Down
6 changes: 3 additions & 3 deletions src/jailer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ bench = false
tracing = ["log-instrument", "utils/tracing"]

[dependencies]
libc = "0.2.175"
libc = "0.2.176"
log-instrument = { path = "../log-instrument", optional = true }
regex = { version = "1.11.2", default-features = false, features = ["std"] }
thiserror = "2.0.16"
regex = { version = "1.11.3", default-features = false, features = ["std"] }
thiserror = "2.0.17"
vmm-sys-util = "0.14.0"

utils = { path = "../utils" }
Expand Down
2 changes: 1 addition & 1 deletion src/log-instrument-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bench = false

[dependencies]
proc-macro2 = "1.0.101"
quote = "1.0.40"
quote = "1.0.41"
syn = { version = "2.0.106", features = ["full", "extra-traits"] }

[lints]
Expand Down
6 changes: 3 additions & 3 deletions src/pci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ default = []
[dependencies]
byteorder = "1.5.0"
displaydoc = "0.2.5"
libc = "0.2.175"
libc = "0.2.176"
log = "0.4.28"
serde = { version = "1.0.226", features = ["derive"] }
thiserror = "2.0.16"
serde = { version = "1.0.228", features = ["derive"] }
thiserror = "2.0.17"
vm-device = { path = "../vm-device" }
vm-memory = { version = "0.16.1", features = [
"backend-mmap",
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 @@ -14,9 +14,9 @@ tracing = ["log-instrument", "utils/tracing"]

[dependencies]
displaydoc = "0.2.5"
libc = "0.2.175"
libc = "0.2.176"
log-instrument = { path = "../log-instrument", optional = true }
thiserror = "2.0.16"
thiserror = "2.0.17"
vmm-sys-util = "0.14.0"

utils = { path = "../utils" }
Expand Down
6 changes: 3 additions & 3 deletions src/seccompiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ bench = false
bincode = { version = "2.0.1", features = ["serde"] }
clap = { version = "4.5.48", features = ["derive", "string"] }
displaydoc = "0.2.5"
libc = "0.2.175"
serde = { version = "1.0.226", features = ["derive"] }
libc = "0.2.176"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
thiserror = "2.0.16"
thiserror = "2.0.17"
zerocopy = { version = "0.8.27" }

[lints]
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 @@ -17,10 +17,10 @@ clap = { version = "4.5.48", features = ["derive", "string"] }
displaydoc = "0.2.5"

fc_utils = { package = "utils", path = "../utils" }
libc = "0.2.175"
libc = "0.2.176"
log-instrument = { path = "../log-instrument", optional = true }
semver = "1.0.27"
thiserror = "2.0.16"
thiserror = "2.0.17"
vmm = { path = "../vmm" }
vmm-sys-util = "0.14.0"

Expand Down
4 changes: 2 additions & 2 deletions src/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ tracing = ["log-instrument"]

[dependencies]
displaydoc = "0.2.5"
libc = "0.2.175"
libc = "0.2.176"
log-instrument = { path = "../log-instrument", optional = true }
thiserror = "2.0.16"
thiserror = "2.0.17"

[lints]
workspace = true
2 changes: 1 addition & 1 deletion src/vm-device/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ bench = false
default = []

[dependencies]
serde = { version = "1.0.226", features = ["derive", "rc"] }
serde = { version = "1.0.228", features = ["derive", "rc"] }
vmm-sys-util = { version = "0.14.0", features = ["with-serde"] }
8 changes: 4 additions & 4 deletions src/vmm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ acpi_tables = { path = "../acpi-tables" }
aes-gcm = { version = "0.10.1", default-features = false, features = ["aes"] }
anyhow = "1.0.100"
arrayvec = { version = "0.7.6", optional = true }
aws-lc-rs = { version = "1.14.0", features = ["bindgen"] }
aws-lc-rs = { version = "1.14.1", features = ["bindgen"] }
base64 = "0.22.1"
bincode = { version = "2.0.1", features = ["serde"] }
bitflags = "2.9.4"
Expand All @@ -35,18 +35,18 @@ gdbstub = { version = "0.7.7", optional = true }
gdbstub_arch = { version = "0.3.2", optional = true }
kvm-bindings = { version = "0.13.0", features = ["fam-wrappers", "serde"] }
kvm-ioctls = "0.23.0"
libc = "0.2.175"
libc = "0.2.176"
linux-loader = "0.13.0"
log = { version = "0.4.28", features = ["std", "serde"] }
log-instrument = { path = "../log-instrument", optional = true }
memfd = "0.6.5"
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
pci = { path = "../pci" }
semver = { version = "1.0.27", features = ["serde"] }
serde = { version = "1.0.226", features = ["derive", "rc"] }
serde = { version = "1.0.228", features = ["derive", "rc"] }
serde_json = "1.0.145"
slab = "0.4.11"
thiserror = "2.0.16"
thiserror = "2.0.17"
timerfd = "1.5.0"
userfaultfd = "0.9.0"
utils = { path = "../utils" }
Expand Down
Loading