소스 검색

Update Cargo.lock

librespot now require rust 1.21.0. error_chain is updated to avoid
compilation warnings about unused rustdoc.
Johan Anderholm 7 년 전
부모
커밋
96a6978016
4개의 변경된 파일354개의 추가작업 그리고 147개의 파일을 삭제
  1. 1 1
      .travis.yml
  2. 351 144
      Cargo.lock
  3. 1 1
      README.md
  4. 1 1
      core/Cargo.toml

+ 1 - 1
.travis.yml

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

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 351 - 144
Cargo.lock


+ 1 - 1
README.md

@@ -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.**
 

+ 1 - 1
core/Cargo.toml

@@ -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"

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.