This repository was archived by the owner on Nov 25, 2025. It is now read-only.
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 1515 - rust : nightly
1616 env :
1717 RUSTFMTCHK : false
18- - rust : 1.29.0
18+ - rust : 1.41.1
1919 env :
20- PIN_VERSIONS : true
20+ RUSTFMTCHK : false
2121 steps :
2222 - name : Checkout Crate
2323 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:
4747* 0.21.0
4848
4949# 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\""
66echo " BITCOINVERSION: \" $BITCOINVERSION \" "
77echo " PATH: \" $PATH \" "
88
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-
239if [ -n " $RUSTFMTCHECK " ]; then
2410 rustup component add rustfmt
2511 cargo fmt --all -- --check
You can’t perform that action at this time.
0 commit comments