瀏覽代碼

Update Cargo.lock

librespot now require rust 1.21.0. error_chain is updated to avoid
compilation warnings about unused rustdoc.
Johan Anderholm 6 年之前
父節點
當前提交
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"

部分文件因文件數量過多而無法顯示