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
208 changes: 95 additions & 113 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/clippy-tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ name = "clippy-tracing"
bench = false

[dependencies]
clap = { version = "4.5.48", features = ["derive"] }
clap = { version = "4.5.51", features = ["derive"] }
itertools = "0.14.0"
proc-macro2 = { version = "1.0.101", features = ["span-locations"] }
proc-macro2 = { version = "1.0.103", features = ["span-locations"] }
quote = "1.0.41"
syn = { version = "2.0.106", features = ["full", "extra-traits", "visit", "visit-mut", "printing"] }
syn = { version = "2.0.109", features = ["full", "extra-traits", "visit", "visit-mut", "printing"] }
walkdir = "2.5.0"

[dev-dependencies]
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 @@ -13,9 +13,9 @@ bench = false
tracing = ["log-instrument", "vmm/tracing"]

[dependencies]
clap = { version = "4.5.48", features = ["derive", "string"] }
clap = { version = "4.5.51", features = ["derive", "string"] }
displaydoc = "0.2.5"
libc = "0.2.176"
libc = "0.2.177"
log-instrument = { path = "../log-instrument", optional = true }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
Expand Down
6 changes: 3 additions & 3 deletions src/firecracker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ gdb = ["vmm/gdb"]
[dependencies]
displaydoc = "0.2.5"
event-manager = "0.4.1"
libc = "0.2.176"
libc = "0.2.177"
log-instrument = { path = "../log-instrument", optional = true }
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
serde = { version = "1.0.228", features = ["derive"] }
Expand All @@ -41,8 +41,8 @@ serde_json = "1.0.145"

[dev-dependencies]
cargo_toml = "0.22.3"
libc = "0.2.176"
regex = { version = "1.11.3", default-features = false, features = [
libc = "0.2.177"
regex = { version = "1.12.2", default-features = false, features = [
"std",
"unicode-perl",
] }
Expand Down
4 changes: 2 additions & 2 deletions src/jailer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ bench = false
tracing = ["log-instrument", "utils/tracing"]

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

Expand Down
4 changes: 2 additions & 2 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.101"
proc-macro2 = "1.0.103"
quote = "1.0.41"
syn = { version = "2.0.106", features = ["full", "extra-traits"] }
syn = { version = "2.0.109", features = ["full", "extra-traits"] }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion src/pci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ default = []
[dependencies]

displaydoc = "0.2.5"
libc = "0.2.176"
libc = "0.2.177"
log = "0.4.28"
serde = { version = "1.0.228", features = ["derive"] }
thiserror = "2.0.17"
Expand Down
2 changes: 1 addition & 1 deletion src/rebase-snap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tracing = ["log-instrument", "utils/tracing"]

[dependencies]
displaydoc = "0.2.5"
libc = "0.2.176"
libc = "0.2.177"
log-instrument = { path = "../log-instrument", optional = true }
thiserror = "2.0.17"
vmm-sys-util = "0.14.0"
Expand Down
4 changes: 2 additions & 2 deletions src/seccompiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ bench = false

[dependencies]
bincode = { version = "2.0.1", features = ["serde"] }
clap = { version = "4.5.48", features = ["derive", "string"] }
clap = { version = "4.5.51", features = ["derive", "string"] }
displaydoc = "0.2.5"
libc = "0.2.176"
libc = "0.2.177"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
thiserror = "2.0.17"
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 @@ -13,11 +13,11 @@ bench = false
tracing = ["log-instrument", "fc_utils/tracing", "vmm/tracing"]

[dependencies]
clap = { version = "4.5.48", features = ["derive", "string"] }
clap = { version = "4.5.51", features = ["derive", "string"] }
displaydoc = "0.2.5"

fc_utils = { package = "utils", path = "../utils" }
libc = "0.2.176"
libc = "0.2.177"
log-instrument = { path = "../log-instrument", optional = true }
semver = "1.0.27"
thiserror = "2.0.17"
Expand Down
2 changes: 1 addition & 1 deletion src/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tracing = ["log-instrument"]

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

Expand Down
8 changes: 4 additions & 4 deletions src/vmm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ arrayvec = { version = "0.7.6", optional = true }
aws-lc-rs = { version = "1.14.1", features = ["bindgen"] }
base64 = "0.22.1"
bincode = { version = "2.0.1", features = ["serde"] }
bitflags = "2.9.4"
bitflags = "2.10.0"
byteorder = "1.5.0"
crc64 = "2.0.0"
derive_more = { version = "2.0.1", default-features = false, features = [
Expand All @@ -29,11 +29,11 @@ derive_more = { version = "2.0.1", default-features = false, features = [
] }
displaydoc = "0.2.5"
event-manager = "0.4.1"
gdbstub = { version = "0.7.7", optional = true }
gdbstub = { version = "0.7.8", optional = true }
gdbstub_arch = { version = "0.3.2", optional = true }
kvm-bindings = { version = "0.14.0", features = ["fam-wrappers", "serde"] }
kvm-ioctls = "0.24.0"
libc = "0.2.176"
libc = "0.2.177"
linux-loader = "0.13.1"
log = { version = "0.4.28", features = ["std", "serde"] }
log-instrument = { path = "../log-instrument", optional = true }
Expand Down Expand Up @@ -66,7 +66,7 @@ vm-fdt = "0.3.0"
criterion = { version = "0.7.0", default-features = false }
device_tree = "1.1.0"
itertools = "0.14.0"
proptest = { version = "1.8.0", default-features = false, features = ["std"] }
proptest = { version = "1.9.0", default-features = false, features = ["std"] }

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