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
621 changes: 341 additions & 280 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/acpi-tables/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ bench = false

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

[lints]
workspace = true
10 changes: 5 additions & 5 deletions src/clippy-tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ name = "clippy-tracing"
bench = false

[dependencies]
clap = { version = "4.5.42", features = ["derive"] }
clap = { version = "4.5.54", features = ["derive"] }
itertools = "0.14.0"
proc-macro2 = { version = "1.0.95", features = ["span-locations"] }
quote = "1.0.40"
syn = { version = "2.0.104", features = ["full", "extra-traits", "visit", "visit-mut", "printing"] }
proc-macro2 = { version = "1.0.105", features = ["span-locations"] }
quote = "1.0.43"
syn = { version = "2.0.114", features = ["full", "extra-traits", "visit", "visit-mut", "printing"] }
walkdir = "2.5.0"

[dev-dependencies]
uuid = { version = "1.17.0", features = ["v4"] }
uuid = { version = "1.19.0", features = ["v4"] }

[lints]
workspace = true
10 changes: 5 additions & 5 deletions src/cpu-template-helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ bench = false
tracing = ["log-instrument", "vmm/tracing"]

[dependencies]
clap = { version = "4.5.42", features = ["derive", "string"] }
clap = { version = "4.5.54", features = ["derive", "string"] }
displaydoc = "0.2.5"
libc = "0.2.174"
libc = "0.2.180"
log-instrument = { path = "../log-instrument", optional = true }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
thiserror = "2.0.12"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
thiserror = "2.0.17"

vmm = { path = "../vmm" }
vmm-sys-util = "0.14.0"
Expand Down
20 changes: 10 additions & 10 deletions src/firecracker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,34 +22,34 @@ gdb = ["vmm/gdb"]
[dependencies]
displaydoc = "0.2.5"
event-manager = "0.4.1"
libc = "0.2.174"
libc = "0.2.180"
log-instrument = { path = "../log-instrument", optional = true }
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
serde = { version = "1.0.219", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_derive = "1.0.136"
serde_json = "1.0.142"
thiserror = "2.0.12"
serde_json = "1.0.149"
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.219" }
serde_json = "1.0.142"
serde = { version = "1.0.228" }
serde_json = "1.0.149"

[dev-dependencies]
cargo_toml = "0.22.3"
libc = "0.2.174"
regex = { version = "1.11.1", default-features = false, features = [
libc = "0.2.180"
regex = { version = "1.12.2", default-features = false, features = [
"std",
"unicode-perl",
] }

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

[lints]
workspace = true
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.174"
libc = "0.2.180"
log-instrument = { path = "../log-instrument", optional = true }
regex = { version = "1.11.1", default-features = false, features = ["std"] }
thiserror = "2.0.12"
regex = { version = "1.12.2", default-features = false, features = ["std"] }
thiserror = "2.0.17"
vmm-sys-util = "0.14.0"

utils = { path = "../utils" }
Expand Down
6 changes: 3 additions & 3 deletions src/log-instrument-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ proc-macro = true
bench = false

[dependencies]
proc-macro2 = "1.0.95"
quote = "1.0.40"
syn = { version = "2.0.104", features = ["full", "extra-traits"] }
proc-macro2 = "1.0.105"
quote = "1.0.43"
syn = { version = "2.0.114", features = ["full", "extra-traits"] }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion src/log-instrument/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "Apache-2.0"
bench = false

[dependencies]
log = "0.4.27"
log = "0.4.29"
log-instrument-macros = { path = "../log-instrument-macros" }

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 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.172"
log = "0.4.27"
serde = { version = "1.0.219", features = ["derive"] }
thiserror = "2.0.12"
libc = "0.2.180"
log = "0.4.29"
serde = { version = "1.0.228", features = ["derive"] }
thiserror = "2.0.17"
vm-allocator = "0.1.3"
vm-device = { path = "../vm-device" }
vm-memory = { version = "0.16.1", features = [
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.174"
libc = "0.2.180"
log-instrument = { path = "../log-instrument", optional = true }
thiserror = "2.0.12"
thiserror = "2.0.17"
vmm-sys-util = "0.14.0"

utils = { path = "../utils" }
Expand Down
12 changes: 6 additions & 6 deletions src/seccompiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ bench = false

[dependencies]
bincode = { version = "2.0.1", features = ["serde"] }
clap = { version = "4.5.42", features = ["derive", "string"] }
clap = { version = "4.5.54", features = ["derive", "string"] }
displaydoc = "0.2.5"
libc = "0.2.174"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
thiserror = "2.0.12"
zerocopy = { version = "0.8.26" }
libc = "0.2.180"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
thiserror = "2.0.17"
zerocopy = { version = "0.8.33" }

[lints]
workspace = true
8 changes: 4 additions & 4 deletions src/snapshot-editor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ bench = false
tracing = ["log-instrument", "fc_utils/tracing", "vmm/tracing"]

[dependencies]
clap = { version = "4.5.42", features = ["derive", "string"] }
clap = { version = "4.5.54", features = ["derive", "string"] }
displaydoc = "0.2.5"

fc_utils = { package = "utils", path = "../utils" }
libc = "0.2.174"
libc = "0.2.180"
log-instrument = { path = "../log-instrument", optional = true }
semver = "1.0.26"
thiserror = "2.0.12"
semver = "1.0.27"
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.174"
libc = "0.2.180"
log-instrument = { path = "../log-instrument", optional = true }
thiserror = "2.0.12"
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.208", features = ["derive", "rc"] }
serde = { version = "1.0.228", features = ["derive", "rc"] }
vmm-sys-util = { version = "0.14.0", features = ["with-serde"] }
36 changes: 18 additions & 18 deletions src/vmm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,40 +17,40 @@ gdb = ["arrayvec", "gdbstub", "gdbstub_arch"]

acpi_tables = { path = "../acpi-tables" }
aes-gcm = { version = "0.10.1", default-features = false, features = ["aes"] }
anyhow = "1.0.98"
anyhow = "1.0.100"
arrayvec = { version = "0.7.6", optional = true }
aws-lc-rs = { version = "1.13.3", features = ["bindgen"] }
aws-lc-rs = { version = "1.15.2", features = ["bindgen"] }
base64 = "0.22.1"
bincode = { version = "2.0.1", features = ["serde"] }
bitflags = "2.9.1"
bitflags = "2.10.0"
byteorder = "1.5.0"
crc64 = "2.0.0"
derive_more = { version = "2.0.1", default-features = false, features = [
derive_more = { version = "2.1.1", default-features = false, features = [
"from",
"display",
] }
displaydoc = "0.2.5"
event-manager = "0.4.1"
gdbstub = { version = "0.7.6", optional = true }
gdbstub = { version = "0.7.8", 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.174"
libc = "0.2.180"
linux-loader = "0.13.0"
log = { version = "0.4.27", features = ["std", "serde"] }
log = { version = "0.4.29", features = ["std", "serde"] }
log-instrument = { path = "../log-instrument", optional = true }
memfd = "0.6.3"
memfd = "0.6.5"
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
pci = { path = "../pci" }
semver = { version = "1.0.26", features = ["serde"] }
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = "1.0.142"
slab = "0.4.10"
thiserror = "2.0.12"
semver = { version = "1.0.27", features = ["serde"] }
serde = { version = "1.0.228", features = ["derive", "rc"] }
serde_json = "1.0.149"
slab = "0.4.11"
thiserror = "2.0.17"
timerfd = "1.5.0"
userfaultfd = "0.8.1"
userfaultfd = "0.9.0"
utils = { path = "../utils" }
uuid = "1.16.0"
uuid = "1.19.0"
vhost = { version = "0.14.0", features = ["vhost-user-frontend"] }
vm-allocator = { version = "0.1.3", features = ["serde"] }
vm-device = { path = "../vm-device" }
Expand All @@ -60,16 +60,16 @@ vm-memory = { version = "0.16.2", features = [
] }
vm-superio = "0.8.0"
vmm-sys-util = { version = "0.14.0", features = ["with-serde"] }
zerocopy = { version = "0.8.26" }
zerocopy = { version = "0.8.33" }

[target.'cfg(target_arch = "aarch64")'.dependencies]
vm-fdt = "0.3.0"

[dev-dependencies]
criterion = { version = "0.7.0", default-features = false }
criterion = { version = "0.8.1", default-features = false }
device_tree = "1.1.0"
itertools = "0.14.0"
proptest = { version = "1.7.0", default-features = false, features = ["std"] }
proptest = { version = "1.9.0", default-features = false, features = ["std"] }

[[bench]]
name = "cpu_templates"
Expand Down
Loading