From aa58cc73257085abba37009de50989a4af0c7b39 Mon Sep 17 00:00:00 2001 From: bytedream Date: Wed, 3 Apr 2024 17:04:03 +0200 Subject: [PATCH] Update dependencies and version --- Cargo.toml | 6 +++--- internal/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4a7931a..8084f2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crunchyroll-rs" -version = "0.10.0" +version = "0.10.1" authors = ["Crunchy Labs Maintainers"] edition = "2021" description = "Pure Rust implementation of the crunchyroll api." @@ -31,7 +31,7 @@ futures-util = { version = "0.3", features = ["std"], default-features = false } jsonwebtoken = { version = "9.3", default-features = false } # the patch version number is necessary for the 'reqwest' and 'rustls' dependencies to prevent incompatability errors # (https://github.com/seanmonstar/reqwest/issues/1837) -reqwest = { version = "0.12.2", features = ["cookies", "json", "multipart", "rustls-tls"], default-features = false } +reqwest = { version = "0.12.2", features = ["cookies", "json", "multipart", "rustls-tls"] } rustls = "0.22.2" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" @@ -40,7 +40,7 @@ smart-default = "0.7" tokio = { version = "1.37", features = ["sync"] } webpki-roots = "0.26" -crunchyroll-rs-internal = { version = "0.10.0", path = "internal" } +crunchyroll-rs-internal = { version = "0.10.1", path = "internal" } lazy_static = { version = "1.4", optional = true } regex = { version = "1.10", default-features = false, features = ["std"], optional = true } diff --git a/internal/Cargo.toml b/internal/Cargo.toml index 86b9145..f58e6f5 100644 --- a/internal/Cargo.toml +++ b/internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crunchyroll-rs-internal" -version = "0.10.0" +version = "0.10.1" authors = ["Crunchy Labs Maintainers"] edition = "2021" description = "Internal crate for crunchyroll-rs. Do not use."