Skip to content

Commit f8a53f3

Browse files
authored
Merge branch 'main' into v1.13.0-dev
2 parents 283714a + 49c1794 commit f8a53f3

File tree

17 files changed

+66
-116
lines changed

17 files changed

+66
-116
lines changed

Cargo.lock

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

src/clippy-tracing/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ name = "clippy-tracing"
1010
bench = false
1111

1212
[dependencies]
13-
clap = { version = "4.5.35", features = ["derive"] }
13+
clap = { version = "4.5.37", features = ["derive"] }
1414
itertools = "0.14.0"
15-
proc-macro2 = { version = "1.0.94", features = ["span-locations"] }
15+
proc-macro2 = { version = "1.0.95", features = ["span-locations"] }
1616
quote = "1.0.40"
1717
syn = { version = "2.0.100", features = ["full", "extra-traits", "visit", "visit-mut", "printing"] }
1818
walkdir = "2.5.0"

src/cpu-template-helper/Cargo.toml

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

1212
[dependencies]
13-
clap = { version = "4.5.35", features = ["derive", "string"] }
13+
clap = { version = "4.5.37", features = ["derive", "string"] }
1414
displaydoc = "0.2.5"
15-
libc = "0.2.171"
15+
libc = "0.2.172"
1616
log-instrument = { path = "../log-instrument", optional = true }
1717
serde = { version = "1.0.219", features = ["derive"] }
1818
serde_json = "1.0.140"

src/firecracker/Cargo.toml

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

@@ -33,7 +33,7 @@ vmm-sys-util = { version = "0.12.1", features = ["with-serde"] }
3333

3434
[dev-dependencies]
3535
cargo_toml = "0.22.1"
36-
libc = "0.2.171"
36+
libc = "0.2.172"
3737
regex = { version = "1.11.1", default-features = false, features = ["std", "unicode-perl"] }
3838

3939
# Dev-Dependencies for uffd examples

src/jailer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ name = "jailer"
1212
bench = false
1313

1414
[dependencies]
15-
libc = "0.2.171"
15+
libc = "0.2.172"
1616
log-instrument = { path = "../log-instrument", optional = true }
1717
regex = { version = "1.11.1", default-features = false, features = ["std"] }
1818
thiserror = "2.0.12"

src/log-instrument-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ proc-macro = true
1111
bench = false
1212

1313
[dependencies]
14-
proc-macro2 = "1.0.94"
14+
proc-macro2 = "1.0.95"
1515
quote = "1.0.40"
1616
syn = { version = "2.0.100", features = ["full", "extra-traits"] }
1717

src/rebase-snap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bench = false
1111

1212
[dependencies]
1313
displaydoc = "0.2.5"
14-
libc = "0.2.171"
14+
libc = "0.2.172"
1515
log-instrument = { path = "../log-instrument", optional = true }
1616
thiserror = "2.0.12"
1717
vmm-sys-util = "0.12.1"

src/seccompiler/Cargo.toml

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

1818
[dependencies]
1919
bincode = { version = "2.0.1", features = ["serde"] }
20-
clap = { version = "4.5.35", features = ["derive", "string"] }
20+
clap = { version = "4.5.37", features = ["derive", "string"] }
2121
displaydoc = "0.2.5"
22-
libc = "0.2.171"
22+
libc = "0.2.172"
2323
serde = { version = "1.0.219", features = ["derive"] }
2424
serde_json = "1.0.140"
2525
thiserror = "2.0.12"

src/snapshot-editor/Cargo.toml

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

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

1616
fc_utils = { package = "utils", path = "../utils" }
17-
libc = "0.2.171"
17+
libc = "0.2.172"
1818
log-instrument = { path = "../log-instrument", optional = true }
1919
semver = "1.0.26"
2020
thiserror = "2.0.12"

src/utils/Cargo.toml

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

1111
[dependencies]
1212
displaydoc = "0.2.5"
13-
libc = "0.2.171"
13+
libc = "0.2.172"
1414
log-instrument = { path = "../log-instrument", optional = true }
1515
thiserror = "2.0.12"
1616

0 commit comments

Comments
 (0)