Skip to content

Commit

Permalink
Update dependencies and version
Browse files Browse the repository at this point in the history
  • Loading branch information
bytedream committed Jun 13, 2024
1 parent 1d08832 commit 3aeaf87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crunchyroll-rs"
version = "0.11.3"
version = "0.11.4"
authors = ["Crunchy Labs Maintainers"]
edition = "2021"
description = "Pure Rust implementation of the crunchyroll api."
Expand Down Expand Up @@ -32,16 +32,16 @@ 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.4", features = ["cookies", "json", "multipart", "rustls-tls"] }
rustls = "0.22.4"
rustls = "0.22.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
smart-default = "0.7"
tokio = { version = "1.37", features = ["sync"] }
tokio = { version = "1.38", features = ["sync"] }
uuid = { version = "1.8", features = ["v4"] }
webpki-roots = "0.26"

crunchyroll-rs-internal = { version = "0.11.3", path = "internal" }
crunchyroll-rs-internal = { version = "0.11.4", path = "internal" }

lazy_static = { version = "1.4", optional = true }
regex = { version = "1.10", default-features = false, features = ["std"], optional = true }
Expand All @@ -51,7 +51,7 @@ tower-service = { version = "0.3", optional = true }
anyhow = "1.0"
once_cell = "1.19"
rand = "0.8"
tokio = { version = "1.37", features = ["macros", "rt", "rt-multi-thread"] }
tokio = { version = "1.38", features = ["macros", "rt", "rt-multi-thread"] }

[workspace]
members = ["internal"]
Expand Down
2 changes: 1 addition & 1 deletion internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crunchyroll-rs-internal"
version = "0.11.3"
version = "0.11.4"
authors = ["Crunchy Labs Maintainers"]
edition = "2021"
description = "Internal crate for crunchyroll-rs. Do not use."
Expand Down

0 comments on commit 3aeaf87

Please sign in to comment.