Crates.io | miniscript |
lib.rs | miniscript |
version | 12.2.0 |
source | src |
created_at | 2018-11-13 19:35:26.665869 |
updated_at | 2024-08-06 23:20:41.307511 |
description | Miniscript: a subset of Bitcoin Script designed for analysis |
homepage | https://github.com/rust-bitcoin/rust-miniscript/ |
repository | https://github.com/rust-bitcoin/rust-miniscript/ |
max_upload_size | |
id | 96486 |
size | 4,588,484 |
Minimum Supported Rust Version: 1.56.1
Library for handling Miniscript, which is a subset of Bitcoin Script designed to support simple and general tooling. Miniscripts represent threshold circuits of spending conditions, and can therefore be easily visualized or serialized as human-readable strings.
This library supports
compiler
flag)bitcoin::PublicKey
bitcoin::TxIn
with appropriate datano_std
support enabled by disabling the default-features
and enabling
"no-std"
. See embedded/
for an example.More information can be found in the documentation
or in the examples/
directory
The cargo feature std
is enabled by default. At least one of the features std
or no-std
or both must be enabled.
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.
This library should always compile with any combination of features on Rust 1.56.1.
Some dependencies do not play nicely with our MSRV, if you are running the tests
you may need to pin some dependencies. See ./contrib/test.sh
for current pinning.
Contributions are generally welcome. If you intend to make larger changes please discuss them in an issue before PRing them to avoid duplicate work and architectural mismatches. If you have any questions or ideas you want to discuss please join us in ##miniscript on Libera.
We use a custom Rust compiler configuration conditional to guard the bench mark code. To run the
bench marks use: RUSTFLAGS='--cfg=bench' cargo +nightly bench
.
See CHANGELOG.md.
The code in this project is licensed under the Creative Commons CC0 1.0 Universal license. We use the SPDX license list and SPDX IDs.