From ba1d90a491865364e75d78ba9410cfb202a8afd2 Mon Sep 17 00:00:00 2001 From: est31 Date: Wed, 20 Jan 2021 20:02:05 +0100 Subject: [PATCH] Update the ogg crate to 0.8 --- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 48d6bd7..df234dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -134,7 +134,7 @@ dependencies = [ "alto 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "ogg 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ogg 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "tinyvec 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -179,7 +179,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "ogg" -version = "0.7.1" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -517,7 +517,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe" "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" "checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" -"checksum ogg 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "13e571c3517af9e1729d4c63571a27edd660ade0667973bfc74a67c660c2b651" +"checksum ogg 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6951b4e8bf21c8193da321bcce9c9dd2e13c858fe078bf9054a288b419ae5d6e" "checksum ogg-sys 0.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "a95b8c172e17df1a41bf8d666301d3b2c4efeb90d9d0415e2a4dc0668b35fdb2" "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" "checksum openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)" = "1024c0a59774200a555087a6da3f253a9095a5f344e353b212ac4c8b8e450986" diff --git a/Cargo.toml b/Cargo.toml index fb18a08..9d2f10e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,12 +29,12 @@ required-features = ["ogg"] [dependencies] byteorder = "1.0" tinyvec = { version = "1.0", features = ["alloc"] } -ogg = { version = "0.7", optional = true } +ogg = { version = "0.8", optional = true } tokio-io = { version = "0.1", optional = true } futures = { version = "0.1", optional = true } [dev-dependencies] -ogg = "0.7" +ogg = "0.8" alto = "3" [package.metadata.docs.rs]