1
0
mirror of https://github.com/containers/youki synced 2024-11-23 01:11:58 +01:00

Merge pull request #2919 from containers/dependabot/cargo/rbpf-0.3.0

Bump rbpf from 0.2.0 to 0.3.0
This commit is contained in:
Yashodhan 2024-09-20 10:08:05 +05:30 committed by GitHub
commit c889150868
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 13 deletions

19
Cargo.lock generated

@ -157,12 +157,6 @@ version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
[[package]]
name = "ascii"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ae7d751998c189c1d4468cf0a39bb2eae052a9c58d50ebb3b9591ee3813ad50"
[[package]]
name = "async-trait"
version = "0.1.79"
@ -530,12 +524,12 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
[[package]]
name = "combine"
version = "2.5.2"
version = "4.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1645a65a99c7c8d345761f4b75a6ffe5be3b3b27a93ee731fccc5050ba6be97c"
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
dependencies = [
"ascii",
"byteorder",
"bytes",
"memchr",
]
[[package]]
@ -2985,13 +2979,14 @@ dependencies = [
[[package]]
name = "rbpf"
version = "0.2.0"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b536dc5c7e3a730d06c578a41df1fbcccd66240a7a9bd5f150a0826291f01c66"
checksum = "463d0b79f93dd962cc115e33f11971bf025c85943d726322c812d98c9f8ecb5b"
dependencies = [
"byteorder",
"combine",
"libc",
"log",
"time 0.2.27",
]

@ -25,7 +25,7 @@ procfs = "0.16.0"
oci-spec = { version = "~0.6.8", features = ["runtime"] }
fixedbitset = "0.5.7"
serde = { version = "1.0", features = ["derive"] }
rbpf = { version = "0.2.0", optional = true }
rbpf = { version = "0.3.0", optional = true }
libbpf-sys = { version = "1.4.5", optional = true }
errno = { version = "0.3.9", optional = true }
libc = { version = "0.2.158", optional = true }