parent
83514c87a7
commit
7854bd7918
|
@ -28,6 +28,10 @@ jobs:
|
||||||
- rust: 1.41.1
|
- rust: 1.41.1
|
||||||
env:
|
env:
|
||||||
AS_DEPENDENCY: true
|
AS_DEPENDENCY: true
|
||||||
|
- rust: 1.47
|
||||||
|
env:
|
||||||
|
AS_DEPENDENCY: true
|
||||||
|
DO_NO_STD: true
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Crate
|
- name: Checkout Crate
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
target
|
target
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
dep_test
|
||||||
|
|
||||||
#fuzz
|
#fuzz
|
||||||
fuzz/hfuzz_target
|
fuzz/hfuzz_target
|
||||||
|
|
|
@ -77,7 +77,8 @@ please join us in
|
||||||
|
|
||||||
## Minimum Supported Rust Version (MSRV)
|
## Minimum Supported Rust Version (MSRV)
|
||||||
|
|
||||||
This library should always compile with any combination of features on **Rust 1.29**.
|
This library should always compile with any combination of features (minus
|
||||||
|
`no-std`) on **Rust 1.41.1** or **Rust 1.47** with `no-std`.
|
||||||
|
|
||||||
Because some dependencies have broken the build in minor/patch releases, to
|
Because some dependencies have broken the build in minor/patch releases, to
|
||||||
compile with 1.29.0 you will need to run the following version-pinning command:
|
compile with 1.29.0 you will need to run the following version-pinning command:
|
||||||
|
|
|
@ -74,7 +74,8 @@ impl fmt::Debug for ExtendedPrivKey {
|
||||||
.field("parent_fingerprint", &self.parent_fingerprint)
|
.field("parent_fingerprint", &self.parent_fingerprint)
|
||||||
.field("child_number", &self.child_number)
|
.field("child_number", &self.child_number)
|
||||||
.field("chain_code", &self.chain_code)
|
.field("chain_code", &self.chain_code)
|
||||||
.finish_non_exhaustive()
|
.field("private_key", &"[SecretKey]")
|
||||||
|
.finish()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue