Skip to content

Commit 557ada3

Browse files
committed
Update dependencies and version
1 parent 932843d commit 557ada3

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

Cargo.toml

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "crunchyroll-rs"
3-
version = "0.12.0"
3+
# increase version of internal package as well when updating
4+
version = "0.12.1"
45
authors = ["Crunchy Labs Maintainers"]
56
edition = "2021"
67
description = "Pure Rust implementation of the crunchyroll api."
@@ -26,32 +27,32 @@ __test_strict = []
2627
[dependencies]
2728
async-trait = "0.1"
2829
chrono = { version = ">=0.4.35", features = ["serde"] }
29-
dash-mpd = { version = "0.16", default-features = false }
30+
dash-mpd = { version = "0.17", default-features = false }
3031
futures-util = { version = "0.3", features = ["std"], default-features = false }
3132
jsonwebtoken = { version = "9.3", default-features = false }
3233
# the patch version number is necessary for the 'reqwest' and 'rustls' dependencies to prevent incompatability errors
3334
# (https://github.com/seanmonstar/reqwest/issues/1837)
34-
reqwest = { version = "0.12.5", features = ["cookies", "json", "multipart", "rustls-tls"] }
35+
reqwest = { version = "0.12.8", features = ["cookies", "json", "multipart", "rustls-tls"] }
3536
rustls = { version = "0.23.4", default-features = false, features = ["std", "tls12"] }
3637
serde = { version = "1.0", features = ["derive"] }
3738
serde_json = "1.0"
3839
serde_urlencoded = "0.7"
3940
smart-default = "0.7"
40-
tokio = { version = "1.38", features = ["sync"] }
41+
tokio = { version = "1.40", features = ["sync"] }
4142
uuid = { version = "1.10", features = ["v4"] }
4243
webpki-roots = "0.26"
4344

44-
crunchyroll-rs-internal = { version = "0.12.0", path = "internal" }
45+
crunchyroll-rs-internal = { version = "0.12.1", path = "internal" }
4546

4647
lazy_static = { version = "1.5", optional = true }
47-
regex = { version = "1.10", default-features = false, features = ["std"], optional = true }
48+
regex = { version = "1.11", default-features = false, features = ["std"], optional = true }
4849
tower-service = { version = "0.3", optional = true }
4950

5051
[dev-dependencies]
5152
anyhow = "1.0"
52-
once_cell = "1.19"
53+
once_cell = "1.20"
5354
rand = "0.8"
54-
tokio = { version = "1.38", features = ["macros", "rt", "rt-multi-thread"] }
55+
tokio = { version = "1.40", features = ["macros", "rt", "rt-multi-thread"] }
5556

5657
[workspace]
5758
members = ["internal"]

internal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crunchyroll-rs-internal"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["Crunchy Labs Maintainers"]
55
edition = "2021"
66
description = "Internal crate for crunchyroll-rs. Do not use."

0 commit comments

Comments
 (0)