1
1
[package ]
2
2
name = " crunchyroll-rs"
3
- version = " 0.12.0"
3
+ # increase version of internal package as well when updating
4
+ version = " 0.12.1"
4
5
authors = [" Crunchy Labs Maintainers" ]
5
6
edition = " 2021"
6
7
description = " Pure Rust implementation of the crunchyroll api."
@@ -26,32 +27,32 @@ __test_strict = []
26
27
[dependencies ]
27
28
async-trait = " 0.1"
28
29
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 }
30
31
futures-util = { version = " 0.3" , features = [" std" ], default-features = false }
31
32
jsonwebtoken = { version = " 9.3" , default-features = false }
32
33
# the patch version number is necessary for the 'reqwest' and 'rustls' dependencies to prevent incompatability errors
33
34
# (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" ] }
35
36
rustls = { version = " 0.23.4" , default-features = false , features = [" std" , " tls12" ] }
36
37
serde = { version = " 1.0" , features = [" derive" ] }
37
38
serde_json = " 1.0"
38
39
serde_urlencoded = " 0.7"
39
40
smart-default = " 0.7"
40
- tokio = { version = " 1.38 " , features = [" sync" ] }
41
+ tokio = { version = " 1.40 " , features = [" sync" ] }
41
42
uuid = { version = " 1.10" , features = [" v4" ] }
42
43
webpki-roots = " 0.26"
43
44
44
- crunchyroll-rs-internal = { version = " 0.12.0 " , path = " internal" }
45
+ crunchyroll-rs-internal = { version = " 0.12.1 " , path = " internal" }
45
46
46
47
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 }
48
49
tower-service = { version = " 0.3" , optional = true }
49
50
50
51
[dev-dependencies ]
51
52
anyhow = " 1.0"
52
- once_cell = " 1.19 "
53
+ once_cell = " 1.20 "
53
54
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" ] }
55
56
56
57
[workspace ]
57
58
members = [" internal" ]
0 commit comments