diff --git a/Cargo.lock b/Cargo.lock index 47441ee..c536dd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -292,9 +292,14 @@ checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217" [[package]] name = "ahash" -version = "0.4.7" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e" +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" +dependencies = [ + "getrandom 0.2.7", + "once_cell", + "version_check 0.9.4", +] [[package]] name = "aho-corasick" @@ -2571,11 +2576,11 @@ checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" [[package]] name = "fallible_collections" -version = "0.3.1" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9599e8ccc571becb62700174680e54e5c50fc5b4d34c1c56d8915e0325650fea" +checksum = "c195cf4b2285d3c993eb887b4dc56b0d5728bbe1d0f9a99c0ac6bec2da3e4d85" dependencies = [ - "hashbrown 0.9.1", + "hashbrown 0.12.1", ] [[package]] @@ -3503,15 +3508,6 @@ dependencies = [ "autocfg 1.1.0", ] -[[package]] -name = "hashbrown" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" -dependencies = [ - "ahash 0.4.7", -] - [[package]] name = "hashbrown" version = "0.11.2" @@ -3523,6 +3519,9 @@ name = "hashbrown" version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3" +dependencies = [ + "ahash 0.7.6", +] [[package]] name = "headers" @@ -4847,15 +4846,14 @@ checksum = "a785740271256c230f57462d3b83e52f998433a7062fc18f96d5999474a9f915" [[package]] name = "mp4parse" -version = "0.11.5" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d39b95509eef169a7e7e144074d937a34147314fea16a551f1385de1b29c93f3" +checksum = "67d2b6c6932c2cce721e9bd213461412300466d4613d93d25a36fb8881d9f8de" dependencies = [ "bitreader", "byteorder", "env_logger 0.8.4", "fallible_collections", - "hashbrown 0.9.1", "log 0.4.17", "num-traits 0.2.15", "static_assertions 1.1.0", diff --git a/Cargo.toml b/Cargo.toml index 16f450d..f52c065 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ log = "0.4.14" markup = "0.12.5" markup5ever_rcdom = "0.1.0" money = "0.1.0" -mp4parse = "0.11.5" +mp4parse = "0.12.0" multipart = "0.18.0" nix = "0.23.0" nom = "7.0.0"