Update Cargo.lock

librespot now require rust 1.21.0. error_chain is updated to avoid
compilation warnings about unused rustdoc.
This commit is contained in:
Johan Anderholm 2018-03-23 06:20:18 +01:00
parent 3a14e9a6be
commit 96a6978016
4 changed files with 418 additions and 179 deletions

View file

@ -1,6 +1,6 @@
language: rust
rust:
- 1.20.0
- 1.21.0
- stable
- beta
- nightly

591
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -26,7 +26,7 @@ If you wish to learn more about how librespot works overall, the best way is to
If you run into a bug when using librespot, please search the existing issues before opening a new one. Chances are, we've encountered it before, and have provided a resolution. If not, please open a new one, and where possible, include the backtrace librespot generates on crashing, along with anything we can use to reproduce the issue, eg. the Spotify URI of the song that caused the crash.
# Building
Rust 1.20.0 or later is required to build librespot.
Rust 1.21.0 or later is required to build librespot.
**If you are building librespot on macOS, the homebrew provided rust may fail due to the way in which homebrew installs rust. In this case, uninstall the homebrew version of rust and use [rustup](https://www.rustup.rs/), and librespot should then build. This should have been fixed in more recent versions of Homebrew, but we're leaving this notice here as a warning.**

View file

@ -11,7 +11,7 @@ path = "../protocol"
base64 = "0.5.0"
byteorder = "1.0"
bytes = "0.4"
error-chain = { version = "0.9.0", default_features = false }
error-chain = { version = "0.11.0", default_features = false }
extprim = "1.5.1"
futures = "0.1.8"
httparse = "1.2.4"