Skip to content

Commit bce88d6

Browse files
dependabot[bot]pb8o
authored andcommitted
build(deps): Bump the firecracker group with 7 updates
Bumps the firecracker group with 7 updates: | Package | From | To | | --- | --- | --- | | [libc](https://github.com/rust-lang/libc) | `0.2.148` | `0.2.149` | | [regex](https://github.com/rust-lang/regex) | `1.9.6` | `1.10.0` | | [aho-corasick](https://github.com/BurntSushi/aho-corasick) | `1.1.1` | `1.1.2` | | [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.4` | `0.3.5` | | [num-traits](https://github.com/rust-num/num-traits) | `0.2.16` | `0.2.17` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.68` | `1.0.69` | | [semver](https://github.com/dtolnay/semver) | `1.0.19` | `1.0.20` | Updates `libc` from 0.2.148 to 0.2.149 - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](rust-lang/libc@0.2.148...0.2.149) Updates `regex` from 1.9.6 to 1.10.0 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](rust-lang/regex@1.9.6...1.10.0) Updates `aho-corasick` from 1.1.1 to 1.1.2 - [Commits](BurntSushi/aho-corasick@1.1.1...1.1.2) Updates `errno` from 0.3.4 to 0.3.5 - [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md) - [Commits](https://github.com/lambda-fairy/rust-errno/commits) Updates `num-traits` from 0.2.16 to 0.2.17 - [Changelog](https://github.com/rust-num/num-traits/blob/master/RELEASES.md) - [Commits](rust-num/num-traits@num-traits-0.2.16...num-traits-0.2.17) Updates `proc-macro2` from 1.0.68 to 1.0.69 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](dtolnay/proc-macro2@1.0.68...1.0.69) Updates `semver` from 1.0.19 to 1.0.20 - [Release notes](https://github.com/dtolnay/semver/releases) - [Commits](dtolnay/semver@1.0.19...1.0.20) --- updated-dependencies: - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: firecracker - dependency-name: aho-corasick dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: errno dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: num-traits dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: proc-macro2 dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker - dependency-name: semver dependency-type: indirect update-type: version-update:semver-patch dependency-group: firecracker ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent dedd2d7 commit bce88d6

File tree

7 files changed

+33
-38
lines changed

7 files changed

+33
-38
lines changed

Cargo.lock

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

src/cpu-template-helper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ bench = false
1313
[dependencies]
1414
clap = { version = "4.4.6", features = ["derive", "string"] }
1515
displaydoc = "0.2.4"
16-
libc = "0.2.148"
16+
libc = "0.2.149"
1717
serde = { version = "1.0.188", features = ["derive"] }
1818
serde_json = "1.0.107"
1919
thiserror = "1.0.49"

src/firecracker/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bench = false
1515
[dependencies]
1616
displaydoc = "0.2.4"
1717
event-manager = "0.3.0"
18-
libc = "0.2.148"
18+
libc = "0.2.149"
1919
serde_json = "1.0.107"
2020
thiserror = "1.0.49"
2121
timerfd = "1.5.0"
@@ -28,7 +28,7 @@ vmm = { path = "../vmm" }
2828

2929
[dev-dependencies]
3030
cargo_toml = "0.16.3"
31-
regex = { version = "1.9.6", default-features = false, features = ["std", "unicode-perl"] }
31+
regex = { version = "1.10.0", default-features = false, features = ["std", "unicode-perl"] }
3232

3333
# Dev-Dependencies for uffd examples
3434
serde = { version = "1.0.188", features = ["derive"] }

src/jailer/Cargo.toml

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

1414
[dependencies]
15-
libc = "0.2.148"
15+
libc = "0.2.149"
1616
nix = { version = "0.27.1", default-features = false, features = ["dir"] }
17-
regex = { version = "1.9.6", default-features = false, features = ["std"] }
17+
regex = { version = "1.10.0", default-features = false, features = ["std"] }
1818
thiserror = "1.0.49"
1919

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

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.4"
14-
libc = "0.2.148"
14+
libc = "0.2.149"
1515
thiserror = "1.0.49"
1616

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

src/seccompiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bench = false
1818
[dependencies]
1919
bincode = "1.2.1"
2020
displaydoc = "0.2.4"
21-
libc = "0.2.148"
21+
libc = "0.2.149"
2222
serde = { version = "1.0.188", features = ["derive"] }
2323
serde_json = "1.0.107"
2424
thiserror = "1.0.49"

src/snapshot-editor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ bench = false
1212
[dependencies]
1313
clap = { version = "4.4.6", features = ["derive", "string"] }
1414
displaydoc = "0.2.4"
15-
libc = "0.2.148"
15+
libc = "0.2.149"
1616
snapshot = { path = "../snapshot" }
1717
thiserror = "1.0.49"
1818
vmm = { path = "../vmm" }

0 commit comments

Comments
 (0)