Skip to content

Commit 0f4a6cb

Browse files
authored
Merge branch 'main' into seccomp-cleanup
2 parents 35b495c + c8fa501 commit 0f4a6cb

File tree

14 files changed

+162
-145
lines changed

14 files changed

+162
-145
lines changed

Cargo.lock

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deny.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ allow = [
55
"Apache-2.0",
66
"BSD-3-Clause",
77
"ISC",
8-
"Unicode-DFS-2016",
8+
"Unicode-3.0",
99
"OpenSSL"
1010
]
1111

src/acpi-tables/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ license = "Apache-2.0"
88

99
[dependencies]
1010
displaydoc = "0.2.5"
11-
thiserror = "2.0.3"
11+
thiserror = "2.0.6"
1212
vm-memory = { version = "0.16.1", features = ["backend-mmap", "backend-bitmap"] }
13-
zerocopy = { version = "0.8.11", features = ["derive"] }
13+
zerocopy = { version = "0.8.13", features = ["derive"] }
1414

1515
[lib]
1616
bench = false

src/clippy-tracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "clippy-tracing"
1010
bench = false
1111

1212
[dependencies]
13-
clap = { version = "4.5.21", features = ["derive"] }
13+
clap = { version = "4.5.23", features = ["derive"] }
1414
itertools = "0.13.0"
1515
proc-macro2 = { version = "1.0.92", features = ["span-locations"] }
1616
quote = "1.0.37"

src/cpu-template-helper/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ name = "cpu-template-helper"
1010
bench = false
1111

1212
[dependencies]
13-
clap = { version = "4.5.21", features = ["derive", "string"] }
13+
clap = { version = "4.5.23", features = ["derive", "string"] }
1414
displaydoc = "0.2.5"
15-
libc = "0.2.167"
15+
libc = "0.2.168"
1616
log-instrument = { path = "../log-instrument", optional = true }
1717
serde = { version = "1.0.215", features = ["derive"] }
1818
serde_json = "1.0.133"
19-
thiserror = "2.0.3"
19+
thiserror = "2.0.6"
2020

2121
vmm = { path = "../vmm" }
2222
vmm-sys-util = "0.12.1"

src/firecracker/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ bench = false
1818
[dependencies]
1919
displaydoc = "0.2.5"
2020
event-manager = "0.4.0"
21-
libc = "0.2.167"
21+
libc = "0.2.168"
2222
log-instrument = { path = "../log-instrument", optional = true }
2323
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
2424

2525
seccompiler = { path = "../seccompiler" }
2626
serde = { version = "1.0.215", features = ["derive"] }
2727
serde_derive = "1.0.136"
2828
serde_json = "1.0.133"
29-
thiserror = "2.0.3"
29+
thiserror = "2.0.6"
3030
timerfd = "1.6.0"
3131
utils = { path = "../utils" }
3232
vmm = { path = "../vmm" }
3333
vmm-sys-util = { version = "0.12.1", features = ["with-serde"] }
3434

3535
[dev-dependencies]
36-
cargo_toml = "0.20.5"
37-
libc = "0.2.167"
36+
cargo_toml = "0.21.0"
37+
libc = "0.2.168"
3838
regex = { version = "1.11.1", default-features = false, features = ["std", "unicode-perl"] }
3939

4040
# Dev-Dependencies for uffd examples

src/jailer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ name = "jailer"
1212
bench = false
1313

1414
[dependencies]
15-
libc = "0.2.167"
15+
libc = "0.2.168"
1616
log-instrument = { path = "../log-instrument", optional = true }
1717
nix = { version = "0.29.0", default-features = false, features = ["dir"] }
1818
regex = { version = "1.11.1", default-features = false, features = ["std"] }
19-
thiserror = "2.0.3"
19+
thiserror = "2.0.6"
2020
vmm-sys-util = "0.12.1"
2121

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

src/rebase-snap/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ bench = false
1111

1212
[dependencies]
1313
displaydoc = "0.2.5"
14-
libc = "0.2.167"
14+
libc = "0.2.168"
1515
log-instrument = { path = "../log-instrument", optional = true }
16-
thiserror = "2.0.3"
16+
thiserror = "2.0.6"
1717
vmm-sys-util = "0.12.1"
1818

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

src/seccompiler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ bench = false
1818
[dependencies]
1919
bincode = "1.2.1"
2020
displaydoc = "0.2.5"
21-
libc = "0.2.167"
21+
libc = "0.2.168"
2222
log-instrument = { path = "../log-instrument", optional = true }
2323
serde = { version = "1.0.215", features = ["derive"] }
2424
serde_json = "1.0.133"
25-
thiserror = "2.0.3"
25+
thiserror = "2.0.6"
2626

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

src/snapshot-editor/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ name = "snapshot-editor"
1010
bench = false
1111

1212
[dependencies]
13-
clap = { version = "4.5.21", features = ["derive", "string"] }
13+
clap = { version = "4.5.23", features = ["derive", "string"] }
1414
displaydoc = "0.2.5"
1515

1616
fc_utils = { package = "utils", path = "../utils" }
17-
libc = "0.2.167"
17+
libc = "0.2.168"
1818
log-instrument = { path = "../log-instrument", optional = true }
1919
semver = "1.0.23"
20-
thiserror = "2.0.3"
20+
thiserror = "2.0.6"
2121
vmm = { path = "../vmm" }
2222
vmm-sys-util = "0.12.1"
2323

0 commit comments

Comments
 (0)