From e69f64eb53a1b2a38f78ae05e886ab538bb2cb19 Mon Sep 17 00:00:00 2001 From: bytedream Date: Mon, 14 Aug 2023 00:34:19 +0200 Subject: [PATCH] Update dependencies and version --- Cargo.toml | 10 +++++----- internal/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9bc957f..8875423 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crunchyroll-rs" -version = "0.5.1" +version = "0.6.0" authors = ["Crunchy Labs Maintainers"] edition = "2021" description = "Pure Rust implementation of the crunchyroll api." @@ -38,15 +38,15 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_urlencoded = "0.7" smart-default = "0.7" -tokio = { version = "1.29", features = ["sync"] } +tokio = { version = "1.31", features = ["sync"] } webpki-roots = "0.25" -crunchyroll-rs-internal = { version = "0.5.1", path = "internal" } +crunchyroll-rs-internal = { version = "0.6.0", path = "internal" } # Optional / required from features aes = { version = "0.8", optional = true } cbc = { version = "0.1", optional = true } -dash-mpd = { version = "0.12", default-features = false, optional = true } +dash-mpd = { version = "0.13", default-features = false, optional = true } lazy_static = { version = "1.4", optional = true } m3u8-rs = { version = "5.0", optional = true } regex = { version = "1.9", default-features = false, features = ["std"], optional = true } @@ -55,7 +55,7 @@ regex = { version = "1.9", default-features = false, features = ["std"], optiona anyhow = "1.0" once_cell = "1.18" rand = "0.8" -tokio = { version = "1.29", features = ["macros", "rt", "rt-multi-thread"] } +tokio = { version = "1.31", features = ["macros", "rt", "rt-multi-thread"] } [workspace] members = ["internal"] diff --git a/internal/Cargo.toml b/internal/Cargo.toml index a669cae..16a5ae4 100644 --- a/internal/Cargo.toml +++ b/internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crunchyroll-rs-internal" -version = "0.5.1" +version = "0.6.0" authors = ["Crunchy Labs Maintainers"] edition = "2021" description = "Internal crate for crunchyroll-rs. Do not use."