You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge #769: Remove no-std and actual-serde features
ccc2815 Remove no-std and actual-serde features (Sexosexosexo)
Pull request description:
Closes#681
The `no-std` feature is no longer needed with `bitcoin` version 0.32.0
- Update README.md (in Building I have copy-pasted part of the same section from `rust-bitcoin`)
- Disable `actual-serde` implicit feature
I think `FEATURES_WITH_NO_STD` now could be removed from the maintainer tools. Let me know if there's something missing or to improve!
ACKs for top commit:
apoelstra:
ACK ccc2815; successfully ran local tests; even nicer!
Tree-SHA512: c1146176d65d1953b765273e55d28b8c6b926bcd091e46db66858b448c9435f90db703ae7ec11425a316276ce73c8ec6025be73afbf22ea88aa6ff27224abe9a
Copy file name to clipboardExpand all lines: README.md
+2-9Lines changed: 2 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -27,24 +27,17 @@ are convertible to `bitcoin::PublicKey`
27
27
completing an unsigned `bitcoin::TxIn` with appropriate data
28
28
* Determining the specific keys, hash preimages and timelocks used to spend
29
29
coins in a given Bitcoin transaction
30
-
*`no_std` support enabled by disabling the `default-features` and enabling
31
-
`"no-std"`. See `embedded/` for an example.
30
+
*`no_std` support enabled by disabling the `default-features`. See `embedded/` for an example.
32
31
33
32
More information can be found in [the documentation](https://docs.rs/miniscript)
34
33
or in [the `examples/` directory](https://github.com/rust-bitcoin/rust-miniscript/tree/master/examples)
35
34
36
-
## Building
37
-
38
-
The cargo feature `std` is enabled by default. At least one of the features `std` or `no-std` or both must be enabled.
39
-
40
-
Enabling the `no-std` feature does not disable `std`. To disable the `std` feature you must disable default features. The `no-std` feature only enables additional features required for this crate to be usable without `std`. Both can be enabled without conflict.
41
-
42
35
## Minimum Supported Rust Version (MSRV)
43
36
44
37
This library should always compile with any combination of features on **Rust 1.63.0**.
45
38
46
39
Some dependencies do not play nicely with our MSRV, if you are running the tests
47
-
you may need to pin some dependencies. See `./contrib/test.sh` for current pinning.
40
+
you may need to pin some dependencies. See `./contrib/pin.sh` for current pinning.
0 commit comments