Skip to content

Commit ccc2815

Browse files
committed
Remove no-std and actual-serde features
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
1 parent 39c2fa5 commit ccc2815

File tree

5 files changed

+8
-24
lines changed

5 files changed

+8
-24
lines changed

Cargo.toml

+3-5
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,18 @@ rust-version = "1.63.0"
1414
[features]
1515
default = ["std"]
1616
std = ["bitcoin/std", "bitcoin/secp-recovery", "bech32/std"]
17-
no-std = ["bech32/alloc"]
1817
compiler = []
1918
trace = []
2019

21-
serde = ["actual-serde", "bitcoin/serde"]
20+
serde = ["dep:serde", "bitcoin/serde"]
2221
rand = ["bitcoin/rand"]
2322
base64 = ["bitcoin/base64"]
2423

2524
[dependencies]
26-
bech32 = { version = "0.11.0", default-features = false }
25+
bech32 = { version = "0.11.0", default-features = false, features = ["alloc"] }
2726
bitcoin = { version = "0.32.0", default-features = false }
2827

29-
# Do NOT use this as a feature! Use the `serde` feature instead.
30-
actual-serde = { package = "serde", version = "1.0.103", optional = true }
28+
serde = { version = "1.0.103", optional = true }
3129

3230
[dev-dependencies]
3331
serde_test = "1.0.147"

README.md

+2-9
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,17 @@ are convertible to `bitcoin::PublicKey`
2727
completing an unsigned `bitcoin::TxIn` with appropriate data
2828
* Determining the specific keys, hash preimages and timelocks used to spend
2929
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.
3231

3332
More information can be found in [the documentation](https://docs.rs/miniscript)
3433
or in [the `examples/` directory](https://github.com/rust-bitcoin/rust-miniscript/tree/master/examples)
3534

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-
4235
## Minimum Supported Rust Version (MSRV)
4336

4437
This library should always compile with any combination of features on **Rust 1.63.0**.
4538

4639
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.
4841

4942
## Contributing
5043

contrib/test_vars.sh

+1-5
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,8 @@
77
# Test all these features with "std" enabled.
88
FEATURES_WITH_STD="compiler trace serde rand base64"
99

10-
# Test all these features with "no-std" enabled.
11-
# rust-miniscript only: https://github.com/rust-bitcoin/rust-miniscript/issues/681
12-
FEATURES_WITH_NO_STD="compiler trace serde rand base64"
13-
1410
# Test all these features without "std" enabled.
15-
FEATURES_WITHOUT_STD=""
11+
FEATURES_WITHOUT_STD="compiler trace serde rand base64"
1612

1713
# Run these examples.
1814
# Note `examples/big` should not be run.

embedded/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cortex-m-rt = "0.6.10"
1515
cortex-m-semihosting = "0.3.3"
1616
panic-halt = "0.2.0"
1717
alloc-cortex-m = "0.4.1"
18-
miniscript = { path = "../", default-features = false, features = ["no-std"] }
18+
miniscript = { path = "../", default-features = false }
1919

2020
[[bin]]
2121
name = "embedded"

src/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,6 @@ compile_error!(
8989
"rust-miniscript currently only supports architectures with pointers wider than 16 bits"
9090
);
9191

92-
#[cfg(not(any(feature = "std", feature = "no-std")))]
93-
compile_error!("at least one of the `std` or `no-std` features must be enabled");
94-
9592
pub use bitcoin;
9693

9794
#[cfg(not(feature = "std"))]
@@ -102,7 +99,7 @@ extern crate alloc;
10299
extern crate core;
103100

104101
#[cfg(feature = "serde")]
105-
pub use actual_serde as serde;
102+
pub use serde;
106103

107104
#[cfg(bench)]
108105
extern crate test;

0 commit comments

Comments
 (0)