miniscript 12.3.6

Miniscript: a subset of Bitcoin Script designed for analysis
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "miniscript"
version = "12.3.6"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>, Sanket Kanjalkar <sanket1729@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Miniscript: a subset of Bitcoin Script designed for analysis"
homepage = "https://github.com/rust-bitcoin/rust-miniscript/"
readme = "README.md"
keywords = [
    "crypto",
    "bitcoin",
    "miniscript",
    "script",
]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-miniscript/"

[features]
base64 = ["bitcoin/base64"]
compiler = []
default = ["std"]
no-std = ["bech32/alloc"]
rand = ["bitcoin/rand"]
serde = [
    "actual-serde",
    "bitcoin/serde",
]
std = [
    "bitcoin/std",
    "bitcoin/secp-recovery",
    "bech32/std",
]
trace = []

[lib]
name = "miniscript"
path = "src/lib.rs"

[[example]]
name = "big"
path = "examples/big.rs"
required-features = [
    "std",
    "base64",
    "compiler",
]

[[example]]
name = "htlc"
path = "examples/htlc.rs"
required-features = [
    "std",
    "compiler",
]

[[example]]
name = "parse"
path = "examples/parse.rs"
required-features = ["std"]

[[example]]
name = "psbt_sign_finalize"
path = "examples/psbt_sign_finalize.rs"
required-features = [
    "std",
    "base64",
]

[[example]]
name = "sign_multisig"
path = "examples/sign_multisig.rs"
required-features = ["std"]

[[example]]
name = "taproot"
path = "examples/taproot.rs"
required-features = [
    "compiler",
    "std",
]

[[example]]
name = "verify_tx"
path = "examples/verify_tx.rs"
required-features = ["std"]

[[example]]
name = "xpub_descriptors"
path = "examples/xpub_descriptors.rs"
required-features = ["std"]

[[test]]
name = "bip-174"
path = "tests/bip-174.rs"

[dependencies.actual-serde]
version = "1.0.103"
optional = true
package = "serde"

[dependencies.bech32]
version = "0.11.0"
default-features = false

[dependencies.bitcoin]
version = "0.32.6"
default-features = false

[dev-dependencies.bitcoin]
version = "0.32.0"
features = ["base64"]

[dev-dependencies.secp256k1]
version = "0.29.0"
features = ["rand-std"]

[dev-dependencies.serde_test]
version = "1.0.147"