1
1
[package ]
2
2
name = " crunchyroll-rs"
3
- version = " 0.8.3 "
3
+ version = " 0.8.4 "
4
4
authors = [" Crunchy Labs Maintainers" ]
5
5
edition = " 2021"
6
6
description = " Pure Rust implementation of the crunchyroll api."
@@ -29,26 +29,27 @@ __test_strict = []
29
29
30
30
[dependencies ]
31
31
async-trait = " 0.1"
32
- chrono = { version = " 0.4" , features = [" serde" ] }
32
+ # chrono introduced the try_* methods in version 0.4.32 and deprecated all non try_* methods in version 0.4.35
33
+ chrono = { version = " >=0.4.32" , features = [" serde" ] }
33
34
futures-util = { version = " 0.3" , features = [" std" ], default-features = false }
34
35
jsonwebtoken = { version = " 9.2" , default-features = false }
35
36
# the patch version number is necessary for the 'reqwest' and 'rustls' dependencies to prevent incompatability errors
36
37
# (https://github.com/seanmonstar/reqwest/issues/1837)
37
- reqwest = { version = " 0.11.23 " , features = [" cookies" , " json" , " rustls-tls" ], default-features = false }
38
- rustls = { version = " 0.21.6 " , features = [ " dangerous_configuration " ] }
38
+ reqwest = { version = " 0.11.25 " , features = [" cookies" , " json" , " rustls-tls" ], default-features = false }
39
+ rustls = " 0.22.2 "
39
40
serde = { version = " 1.0" , features = [" derive" ] }
40
41
serde_json = " 1.0"
41
42
serde_urlencoded = " 0.7"
42
43
smart-default = " 0.7"
43
- tokio = { version = " 1.35 " , features = [" sync" ] }
44
+ tokio = { version = " 1.36 " , features = [" sync" ] }
44
45
webpki-roots = " 0.26"
45
46
46
- crunchyroll-rs-internal = { version = " 0.8.3 " , path = " internal" }
47
+ crunchyroll-rs-internal = { version = " 0.8.4 " , path = " internal" }
47
48
48
49
# Optional / required from features
49
50
aes = { version = " 0.8" , optional = true }
50
51
cbc = { version = " 0.1" , optional = true }
51
- dash-mpd = { version = " 0.14 " , default-features = false , optional = true }
52
+ dash-mpd = { version = " 0.15 " , default-features = false , optional = true }
52
53
lazy_static = { version = " 1.4" , optional = true }
53
54
m3u8-rs = { version = " 6.0" , optional = true }
54
55
regex = { version = " 1.10" , default-features = false , features = [" std" ], optional = true }
@@ -58,7 +59,7 @@ tower-service = { version = "0.3", optional = true }
58
59
anyhow = " 1.0"
59
60
once_cell = " 1.19"
60
61
rand = " 0.8"
61
- tokio = { version = " 1.35 " , features = [" macros" , " rt" , " rt-multi-thread" ] }
62
+ tokio = { version = " 1.36 " , features = [" macros" , " rt" , " rt-multi-thread" ] }
62
63
63
64
[workspace ]
64
65
members = [" internal" ]
0 commit comments