Skip to content

Commit

Permalink
build(deps): Bump the firecracker group with 7 updates
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
dependabot[bot] authored and pb8o committed Oct 12, 2023
1 parent dedd2d7 commit bce88d6
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 38 deletions.
55 changes: 25 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/cpu-template-helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ bench = false
[dependencies]
clap = { version = "4.4.6", features = ["derive", "string"] }
displaydoc = "0.2.4"
libc = "0.2.148"
libc = "0.2.149"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
thiserror = "1.0.49"
Expand Down
4 changes: 2 additions & 2 deletions src/firecracker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ bench = false
[dependencies]
displaydoc = "0.2.4"
event-manager = "0.3.0"
libc = "0.2.148"
libc = "0.2.149"
serde_json = "1.0.107"
thiserror = "1.0.49"
timerfd = "1.5.0"
Expand All @@ -28,7 +28,7 @@ vmm = { path = "../vmm" }

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

# Dev-Dependencies for uffd examples
serde = { version = "1.0.188", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions src/jailer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ name = "jailer"
bench = false

[dependencies]
libc = "0.2.148"
libc = "0.2.149"
nix = { version = "0.27.1", default-features = false, features = ["dir"] }
regex = { version = "1.9.6", default-features = false, features = ["std"] }
regex = { version = "1.10.0", default-features = false, features = ["std"] }
thiserror = "1.0.49"

utils = { path = "../utils" }
2 changes: 1 addition & 1 deletion src/rebase-snap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bench = false

[dependencies]
displaydoc = "0.2.4"
libc = "0.2.148"
libc = "0.2.149"
thiserror = "1.0.49"

utils = { path = "../utils" }
2 changes: 1 addition & 1 deletion src/seccompiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bench = false
[dependencies]
bincode = "1.2.1"
displaydoc = "0.2.4"
libc = "0.2.148"
libc = "0.2.149"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
thiserror = "1.0.49"
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 @@ -12,7 +12,7 @@ bench = false
[dependencies]
clap = { version = "4.4.6", features = ["derive", "string"] }
displaydoc = "0.2.4"
libc = "0.2.148"
libc = "0.2.149"
snapshot = { path = "../snapshot" }
thiserror = "1.0.49"
vmm = { path = "../vmm" }
Expand Down

0 comments on commit bce88d6

Please sign in to comment.