瀏覽代碼

CI: Bump minimum supported Rust version to 1.24.1

because of lazy_static.
Johannes Hofmann 7 年之前
父節點
當前提交
7e4519bdc1
共有 2 個檔案被更改,包括 3 行新增3 行删除
  1. 1
    1
      .appveyor.yml
  2. 2
    2
      .travis.yml

+ 1
- 1
.appveyor.yml 查看文件

@@ -21,7 +21,7 @@ environment:
21 21
     - channel: stable
22 22
       target: i686-pc-windows-msvc
23 23
       cargoflags: --no-default-features
24
-    - channel: 1.23.0
24
+    - channel: 1.24.1
25 25
       target: x86_64-pc-windows-msvc
26 26
 
27 27
 install:

+ 2
- 2
.travis.yml 查看文件

@@ -6,10 +6,10 @@ rust:
6 6
   - stable
7 7
   - beta
8 8
   - nightly
9
-  - 1.23.0
9
+  - 1.24.1
10 10
 script:
11 11
   - |
12
-      if [ "$TRAVIS_RUST_VERSION" == "1.23.0" ]; then
12
+      if [ "$TRAVIS_RUST_VERSION" == "1.24.1" ]; then
13 13
         cargo test --verbose;
14 14
         cargo doc --verbose --no-deps;
15 15
       else