-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #270 from ramsayleung/ramsay_update_to_0.11
Update rspotify to 0.11!
- Loading branch information
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = [ | |
"Mario Ortiz Manero <[email protected]>" | ||
] | ||
name = "rspotify" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
license = "MIT" | ||
readme = "README.md" | ||
description = "Spotify API wrapper" | ||
|
@@ -27,9 +27,9 @@ exclude = [ | |
resolver = "2" | ||
|
||
[dependencies] | ||
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 } | ||
rspotify-macros = { path = "rspotify-macros", version = "0.11.0" } | ||
rspotify-model = { path = "rspotify-model", version = "0.11.0" } | ||
rspotify-http = { path = "rspotify-http", version = "0.11.0", default-features = false } | ||
|
||
async-stream = { version = "0.3.2", optional = true } | ||
async-trait = { version = "0.1.51", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = [ | |
"Mario Ortiz Manero <[email protected]>" | ||
] | ||
name = "rspotify-http" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
license = "MIT" | ||
readme = "README.md" | ||
description = "HTTP compatibility layer for Rspotify" | ||
|
@@ -28,7 +28,7 @@ ureq = { version = "2.2.0", default-features = false, features = ["json", "cooki | |
|
||
[dev-dependencies] | ||
tokio = { version = "1.11.0", features = ["macros", "rt-multi-thread"] } | ||
rspotify-model = { path = "../rspotify-model", version = "0.10.0" } | ||
rspotify-model = { path = "../rspotify-model", version = "0.11.0" } | ||
|
||
[features] | ||
default = ["client-reqwest", "reqwest-default-tls"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = [ | |
"Ramsay Leung <[email protected]>", | ||
"Mario Ortiz Manero <[email protected]>" | ||
] | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
license = "MIT" | ||
readme = "README.md" | ||
description = "Macros for Rspotify" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rspotify-model" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = [ | ||
"Ramsay Leung <[email protected]>", | ||
"Mario Ortiz Manero <[email protected]>" | ||
|