From 352d16d1cfb780544ccf79fdf337f21db4ab9793 Mon Sep 17 00:00:00 2001 From: bytedream Date: Mon, 20 Nov 2023 21:44:15 +0100 Subject: [PATCH] Update dependencies and version --- Cargo.toml | 8 ++++---- internal/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8f985f8..3fe4493 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crunchyroll-rs" -version = "0.6.3" +version = "0.7.0" authors = ["Crunchy Labs Maintainers"] edition = "2021" description = "Pure Rust implementation of the crunchyroll api." @@ -37,10 +37,10 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_urlencoded = "0.7" smart-default = "0.7" -tokio = { version = "1.33", features = ["sync"] } +tokio = { version = "1.34", features = ["sync"] } webpki-roots = "0.25" -crunchyroll-rs-internal = { version = "0.6.2", path = "internal" } +crunchyroll-rs-internal = { version = "0.7.0", path = "internal" } # Optional / required from features aes = { version = "0.8", optional = true } @@ -54,7 +54,7 @@ regex = { version = "1.10", default-features = false, features = ["std"], option anyhow = "1.0" once_cell = "1.18" rand = "0.8" -tokio = { version = "1.33", features = ["macros", "rt", "rt-multi-thread"] } +tokio = { version = "1.34", features = ["macros", "rt", "rt-multi-thread"] } [workspace] members = ["internal"] diff --git a/internal/Cargo.toml b/internal/Cargo.toml index 37546fb..0cd0f42 100644 --- a/internal/Cargo.toml +++ b/internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crunchyroll-rs-internal" -version = "0.6.3" +version = "0.7.0" authors = ["Crunchy Labs Maintainers"] edition = "2021" description = "Internal crate for crunchyroll-rs. Do not use."