diff --git a/shootout/Cargo.lock b/shootout/Cargo.lock index 3609c5c..3c9c220 100644 --- a/shootout/Cargo.lock +++ b/shootout/Cargo.lock @@ -52,7 +52,7 @@ dependencies = [ "quote 1.0.45", "regex", "rustc-hash", - "shlex", + "shlex 1.3.0", "syn 2.0.96", ] @@ -82,11 +82,12 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.2.10" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229" +checksum = "5d262e149917187838d5b42777c8253bcb64500067342904e7d429499a6f277e" dependencies = [ - "shlex", + "find-msvc-tools", + "shlex 2.0.1", ] [[package]] @@ -250,9 +251,9 @@ dependencies = [ [[package]] name = "ffmpeg-sys-next" -version = "8.1.0" +version = "9.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a314bc0e022a33a99567ed4bd2576bd58ffd8fcff7891c29194cfecc26a62547" +checksum = "9b939bf79dd5949412a4b81cfe21a07f48ea21b47fcbb5f57816c8c2de5ae30b" dependencies = [ "bindgen", "cc", @@ -262,6 +263,12 @@ dependencies = [ "vcpkg", ] +[[package]] +name = "find-msvc-tools" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26b73573e6edcd2af0cdf47bd6cb58f0b3839491263c314eaad1ccf24430e1de" + [[package]] name = "fixedbitset" version = "0.5.7" @@ -619,6 +626,12 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + [[package]] name = "smptera-format-identifiers-rust" version = "0.5.1" diff --git a/shootout/Cargo.toml b/shootout/Cargo.toml index 96ac6fb..95bc0a9 100644 --- a/shootout/Cargo.toml +++ b/shootout/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] mpeg2ts = "0.1.1" mpeg2ts-reader = { path = ".." } -ffmpeg-sys-next = { version = "8.1.0", default-features = false, features = ["avcodec", "avformat"] } +ffmpeg-sys-next = { version = "9.0.0", default-features = false, features = ["avcodec", "avformat"] } [dev-dependencies] criterion = "0.8"