File tree Expand file tree Collapse file tree 3 files changed +3
-29
lines changed Expand file tree Collapse file tree 3 files changed +3
-29
lines changed Original file line number Diff line number Diff line change 15
15
- rust : nightly
16
16
env :
17
17
RUSTFMTCHK : false
18
- - rust : 1.29.0
18
+ - rust : 1.41.1
19
19
env :
20
- PIN_VERSIONS : true
20
+ RUSTFMTCHK : false
21
21
steps :
22
22
- name : Checkout Crate
23
23
uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -47,16 +47,4 @@ The following versions are officially supported and automatically tested:
47
47
* 0.21.0
48
48
49
49
# Minimum Supported Rust Version (MSRV)
50
- This library should always compile with any combination of features on ** Rust 1.29** .
51
-
52
- Because some dependencies have broken the build in minor/patch releases, to
53
- compile with 1.29.0 you will need to run the following version-pinning command:
54
- ```
55
- cargo update --package "cc" --precise "1.0.41"
56
- cargo update --package "log:0.4.x" --precise "0.4.13" # x being the highest patch version, currently 14
57
- cargo update --package "cfg-if" --precise "0.1.9"
58
- cargo update --package "serde_json" --precise "1.0.39"
59
- cargo update --package "serde" --precise "1.0.98"
60
- cargo update --package "serde_derive" --precise "1.0.98"
61
- cargo update --package "byteorder" --precise "1.3.4"
62
- ```
50
+ This library should always compile with any combination of features on ** Rust 1.41.1** .
Original file line number Diff line number Diff line change @@ -6,20 +6,6 @@ echo "RUSTFMTCHECK: \"$RUSTFMTCHECK\""
6
6
echo " BITCOINVERSION: \" $BITCOINVERSION \" "
7
7
echo " PATH: \" $PATH \" "
8
8
9
-
10
- # Pin dependencies for Rust v1.29
11
- if [ -n $" $PIN_VERSIONS " ]; then
12
- cargo generate-lockfile --verbose
13
-
14
- cargo update --verbose --package " log" --precise " 0.4.13"
15
- cargo update --verbose --package " cc" --precise " 1.0.41"
16
- cargo update --verbose --package " cfg-if" --precise " 0.1.9"
17
- cargo update --verbose --package " serde_json" --precise " 1.0.39"
18
- cargo update --verbose --package " serde" --precise " 1.0.98"
19
- cargo update --verbose --package " serde_derive" --precise " 1.0.98"
20
- cargo update --verbose --package " byteorder" --precise " 1.3.4"
21
- fi
22
-
23
9
if [ -n " $RUSTFMTCHECK " ]; then
24
10
rustup component add rustfmt
25
11
cargo fmt --all -- --check
You can’t perform that action at this time.
0 commit comments