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
Copy file name to clipboardExpand all lines: README.md
+19-5Lines changed: 19 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,24 +27,38 @@ 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
35
## Building
37
36
38
-
The cargo feature `std` is enabled by default. At least one of the features `std` or `no-std` or both must be enabled.
37
+
The cargo feature `std` is enabled by default. To enable `no_std` support you must disable default features.
39
38
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.
39
+
The library can be built and tested using [`cargo`](https://github.com/rust-lang/cargo/):
0 commit comments