File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 28
28
uses : dtolnay/rust-toolchain@stable
29
29
with :
30
30
toolchain : ${{ matrix.rust }}
31
+ - name : Pin dependencies for MSRV
32
+ if : matrix.rust == '1.63.0'
33
+ run : |
34
+ cargo update -p rustls --precise "0.23.17"
31
35
- name : Test
32
36
run : cargo test --verbose --all-features
33
37
- name : Setup iptables for the timeout test
Original file line number Diff line number Diff line change 9
9
[ Rust Blog ] : https://blog.rust-lang.org/2022/08/11/Rust-1.63.0.html
10
10
11
11
Bitcoin Electrum client library. Supports plaintext, TLS and Onion servers.
12
+
13
+ ## Minimum Supported Rust Version (MSRV)
14
+
15
+ This library should compile with any combination of features with Rust 1.63.0.
16
+
17
+ To build with the MSRV you will need to pin dependencies as follows:
18
+
19
+ ``` shell
20
+ cargo update -p rustls --precise " 0.23.17"
21
+ ```
22
+
You can’t perform that action at this time.
0 commit comments