Skip to content

Commit

Permalink
Upgraded all dependencies with cargo upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
marioortizmanero committed Sep 6, 2021
1 parent da95750 commit c337ae8
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 25 deletions.
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,25 +31,25 @@ rspotify-macros = { path = "rspotify-macros", version = "0.10.0" }
rspotify-model = { path = "rspotify-model", version = "0.10.0" }
rspotify-http = { path = "rspotify-http", version = "0.10.0", default-features = false }

async-stream = { version = "0.3.0", optional = true }
async-trait = { version = "0.1.48", optional = true }
async-stream = { version = "0.3.2", optional = true }
async-trait = { version = "0.1.51", optional = true }
base64 = "0.13.0"
chrono = { version = "0.4.13", features = ["serde", "rustc-serialize"] }
chrono = { version = "0.4.19", features = ["serde", "rustc-serialize"] }
dotenv = { version = "0.15.0", optional = true }
futures = { version = "0.3.8", optional = true }
getrandom = "0.2.0"
log = "0.4.11"
maybe-async = "0.2.1"
serde = { version = "1.0.115", default-features = false }
serde_json = "1.0.57"
thiserror = "1.0.20"
futures = { version = "0.3.17", optional = true }
getrandom = "0.2.3"
log = "0.4.14"
maybe-async = "0.2.6"
serde = { version = "1.0.130", default-features = false }
serde_json = "1.0.67"
thiserror = "1.0.29"
url = "2.2.2"
webbrowser = { version = "0.5.5", optional = true }

[dev-dependencies]
env_logger = { version = "0.9.0", default-features = false }
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] }
futures-util = "0.3.8"
tokio = { version = "1.11.0", features = ["rt-multi-thread", "macros"] }
futures-util = "0.3.17"

[features]
default = ["client-reqwest", "reqwest-default-tls"]
Expand Down
14 changes: 7 additions & 7 deletions rspotify-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ rspotify-model = { path = "../rspotify-model", version = "0.10.0" }

# Temporary until https://github.com/rust-lang/rfcs/issues/2739, for
# `maybe_async`.
async-trait = { version = "0.1.48", optional = true }
log = "0.4.11"
maybe-async = "0.2.4"
serde_json = "1.0.57"
thiserror = "1.0.20"
async-trait = { version = "0.1.51", optional = true }
log = "0.4.14"
maybe-async = "0.2.6"
serde_json = "1.0.67"
thiserror = "1.0.29"

# Supported clients
reqwest = { version = "0.11.0", default-features = false, features = ["json", "socks"], optional = true }
ureq = { version = "2.0", default-features = false, features = ["json", "cookies"], optional = true }
reqwest = { version = "0.11.4", default-features = false, features = ["json", "socks"], optional = true }
ureq = { version = "2.2.0", default-features = false, features = ["json", "cookies"], optional = true }

[features]
default = ["client-reqwest", "reqwest-default-tls"]
Expand Down
2 changes: 1 addition & 1 deletion rspotify-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ keywords = ["spotify", "api", "rspotify"]
edition = "2018"

[dev-dependencies]
serde_json = "1.0.57"
serde_json = "1.0.67"
10 changes: 5 additions & 5 deletions rspotify-model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ keywords = ["spotify", "api", "rspotify"]
edition = "2018"

[dependencies]
chrono = { version = "0.4.13", features = ["serde", "rustc-serialize"] }
serde = { version = "1.0.115", features = ["derive"] }
serde_json = "1.0.57"
strum = { version = "0.21", features = ["derive"] }
thiserror = "1.0.20"
chrono = { version = "0.4.19", features = ["serde", "rustc-serialize"] }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.67"
strum = { version = "0.21.0", features = ["derive"] }
thiserror = "1.0.29"

0 comments on commit c337ae8

Please sign in to comment.