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
141 changes: 71 additions & 70 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 @@ -8,7 +8,7 @@ license = "Apache-2.0"

[dependencies]
displaydoc = "0.2.4"
thiserror = "1.0.32"
thiserror = "1.0.59"
vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-bitmap"] }
zerocopy = { version = "0.7.32", features = ["derive"] }

Expand Down
4 changes: 2 additions & 2 deletions src/clippy-tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ bench = false
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
itertools = "0.12.1"
proc-macro2 = { version = "1.0.80", features = ["span-locations"] }
proc-macro2 = { version = "1.0.81", features = ["span-locations"] }
quote = "1.0.36"
syn = { version = "2.0.59", features = ["full", "extra-traits", "visit", "visit-mut", "printing"] }
syn = { version = "2.0.60", features = ["full", "extra-traits", "visit", "visit-mut", "printing"] }
walkdir = "2.5.0"

[dev-dependencies]
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 @@ -14,9 +14,9 @@ clap = { version = "4.5.4", features = ["derive", "string"] }
displaydoc = "0.2.4"
libc = "0.2.153"
log-instrument = { path = "../log-instrument", optional = true }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.115"
thiserror = "1.0.58"
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.116"
thiserror = "1.0.59"

vmm = { path = "../vmm" }
vmm-sys-util = "0.12.1"
Expand Down
14 changes: 7 additions & 7 deletions src/firecracker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,28 @@ log-instrument = { path = "../log-instrument", optional = true }
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }

seccompiler = { path = "../seccompiler" }
serde = { version = "1.0.196", features = ["derive"] }
serde = { version = "1.0.198", features = ["derive"] }
serde_derive = "1.0.136"
serde_json = "1.0.115"
thiserror = "1.0.58"
serde_json = "1.0.116"
thiserror = "1.0.59"
timerfd = "1.6.0"
utils = { path = "../utils" }
vmm = { path = "../vmm" }

[dev-dependencies]
cargo_toml = "0.19.2"
cargo_toml = "0.20.0"
libc = "0.2.153"
regex = { version = "1.10.4", default-features = false, features = ["std", "unicode-perl"] }

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

[build-dependencies]
bincode = "1.2.1"
seccompiler = { path = "../seccompiler" }
serde = { version = "1.0.196" }
serde_json = "1.0.115"
serde = { version = "1.0.198" }
serde_json = "1.0.116"

[features]
tracing = ["log-instrument", "seccompiler/tracing", "utils/tracing", "vmm/tracing"]
Expand Down
2 changes: 1 addition & 1 deletion src/jailer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ libc = "0.2.153"
log-instrument = { path = "../log-instrument", optional = true }
nix = { version = "0.28.0", default-features = false, features = ["dir"] }
regex = { version = "1.10.4", default-features = false, features = ["std"] }
thiserror = "1.0.58"
thiserror = "1.0.59"

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

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.80"
proc-macro2 = "1.0.81"
quote = "1.0.36"
syn = { version = "2.0.59", features = ["full", "extra-traits"] }
syn = { version = "2.0.60", features = ["full", "extra-traits"] }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion src/rebase-snap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ bench = false
displaydoc = "0.2.4"
libc = "0.2.153"
log-instrument = { path = "../log-instrument", optional = true }
thiserror = "1.0.58"
thiserror = "1.0.59"

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 @@ -20,9 +20,9 @@ bincode = "1.2.1"
displaydoc = "0.2.4"
libc = "0.2.153"
log-instrument = { path = "../log-instrument", optional = true }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.115"
thiserror = "1.0.58"
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.116"
thiserror = "1.0.59"

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

Expand Down
2 changes: 1 addition & 1 deletion src/snapshot-editor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fc_utils = { package = "utils", path = "../utils" }
libc = "0.2.153"
log-instrument = { path = "../log-instrument", optional = true }
semver = "1.0.22"
thiserror = "1.0.58"
thiserror = "1.0.59"
vmm = { path = "../vmm" }

[target.'cfg(target_arch = "aarch64")'.dependencies]
Expand Down
6 changes: 3 additions & 3 deletions src/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ derive_more = { version = "0.99.17", default-features = false, features = ["from
displaydoc = "0.2.4"
libc = "0.2.147"
log-instrument = { path = "../log-instrument", optional = true }
serde = { version = "1.0.165", features = ["derive"] }
thiserror = "1.0.32"
serde = { version = "1.0.198", features = ["derive"] }
thiserror = "1.0.59"
vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-bitmap"] }
vmm-sys-util = "0.12.1"

[dev-dependencies]
serde_json = "1.0.99"
serde_json = "1.0.116"

[features]
tracing = ["log-instrument"]
Expand Down
18 changes: 9 additions & 9 deletions src/vmm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ bench = false
[dependencies]
acpi_tables = { path = "../acpi-tables" }
aes-gcm = { version = "0.10.1", default-features = false, features = ["aes"] }
aws-lc-rs = { version = "1.6.1", features = ["bindgen"] }
base64 = "0.21.0"
aws-lc-rs = { version = "1.7.0", features = ["bindgen"] }
base64 = "0.22.0"
bincode = "1.2.1"
bitflags = "2.0.2"
bitflags = "2.5.0"
crc64 = "2.0.0"
derive_more = { version = "0.99.17", default-features = false, features = ["from", "display"] }
displaydoc = "0.2.4"
Expand All @@ -31,22 +31,22 @@ micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }

seccompiler = { path = "../seccompiler" }
semver = { version = "1.0.17", features = ["serde"] }
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde_json = "1.0.78"
serde = { version = "1.0.198", features = ["derive", "rc"] }
serde_json = "1.0.116"
slab = "0.4.7"
smallvec = "1.11.2"
thiserror = "1.0.32"
thiserror = "1.0.59"
timerfd = "1.5.0"
userfaultfd = "0.7.0"
userfaultfd = "0.8.1"
utils = { path = "../utils" }
vhost = { version = "0.10.0", features = ["vhost-user-frontend"] }
vhost = { version = "0.11.0", features = ["vhost-user-frontend"] }
vm-allocator = "0.1.0"
vm-memory = { version = "0.14.1", features = ["backend-mmap", "backend-bitmap"] }
vm-superio = "0.7.0"
zerocopy = { version = "0.7.32" }

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

[dev-dependencies]
criterion = { version = "0.5.0", default-features = false }
Expand Down