File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 28
28
- rust : 1.41.1
29
29
env :
30
30
AS_DEPENDENCY : true
31
+ - rust : 1.47
32
+ env :
33
+ AS_DEPENDENCY : true
34
+ DO_NO_STD : true
31
35
steps :
32
36
- name : Checkout Crate
33
37
uses : actions/checkout@v2
Original file line number Diff line number Diff line change 1
1
target
2
2
Cargo.lock
3
+ dep_test
3
4
4
5
# fuzz
5
6
fuzz /hfuzz_target
Original file line number Diff line number Diff line change @@ -77,7 +77,8 @@ please join us in
77
77
78
78
## Minimum Supported Rust Version (MSRV)
79
79
80
- This library should always compile with any combination of features on ** Rust 1.29** .
80
+ This library should always compile with any combination of features (minus
81
+ ` no-std ` ) on ** Rust 1.41.1** or ** Rust 1.47** with ` no-std ` .
81
82
82
83
Because some dependencies have broken the build in minor/patch releases, to
83
84
compile with 1.29.0 you will need to run the following version-pinning command:
Original file line number Diff line number Diff line change @@ -74,7 +74,8 @@ impl fmt::Debug for ExtendedPrivKey {
74
74
. field ( "parent_fingerprint" , & self . parent_fingerprint )
75
75
. field ( "child_number" , & self . child_number )
76
76
. field ( "chain_code" , & self . chain_code )
77
- . finish_non_exhaustive ( )
77
+ . field ( "private_key" , & "[SecretKey]" )
78
+ . finish ( )
78
79
}
79
80
}
80
81
You can’t perform that action at this time.
0 commit comments