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 Nov 20, 2023
1 parent 1703549 commit 5e65d4d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crunchyroll-rs"
version = "0.6.3"
version = "0.7.0"
authors = ["Crunchy Labs Maintainers"]
edition = "2021"
description = "Pure Rust implementation of the crunchyroll api."
Expand Down Expand Up @@ -37,10 +37,10 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
smart-default = "0.7"
tokio = { version = "1.33", features = ["sync"] }
tokio = { version = "1.34", features = ["sync"] }
webpki-roots = "0.25"

crunchyroll-rs-internal = { version = "0.6.2", path = "internal" }
crunchyroll-rs-internal = { version = "0.7.0", path = "internal" }

# Optional / required from features
aes = { version = "0.8", optional = true }
Expand All @@ -54,7 +54,7 @@ regex = { version = "1.10", default-features = false, features = ["std"], option
anyhow = "1.0"
once_cell = "1.18"
rand = "0.8"
tokio = { version = "1.33", features = ["macros", "rt", "rt-multi-thread"] }
tokio = { version = "1.34", features = ["macros", "rt", "rt-multi-thread"] }

[workspace]
members = ["internal"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The documentation is available at [docs.rs](https://docs.rs/crunchyroll-rs/).
You need this crate and [tokio](https://github.com/tokio-rs/tokio) as dependency in your Cargo.toml in order to start working:
```toml
[dependencies]
crunchyroll-rs = "0.6"
crunchyroll-rs = "0.7"
tokio = { version = "1", features = ["full"] }
```

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.6.3"
version = "0.7.0"
authors = ["Crunchy Labs Maintainers"]
edition = "2021"
description = "Internal crate for crunchyroll-rs. Do not use."
Expand Down

0 comments on commit 5e65d4d

Please sign in to comment.