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
The `no-std` feature is no longer needed with `bitcoin` version 0.32.0
- Update README.md, including updating to the `./contrib/pin.sh` path
- Disable `actual-serde` implicit feature
Copy file name to clipboardexpand all lines: README.md
+2-9
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