[dependencies.actual-serde]
default-features = false
features = ["derive", "alloc"]
optional = true
package = "serde"
version = "1.0.103"
[dependencies.bitcoin]
default-features = false
version = "0.32.2"
[dependencies.bitcoin-internals]
features = ["alloc"]
version = "0.3.0"
[dependencies.miniscript]
default-features = false
optional = true
version = "12.2.0"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.bincode]
version = "1.3.1"
[dev-dependencies.secp256k1]
features = ["rand-std", "global-context"]
version = "0.29"
[dev-dependencies.serde_derive]
version = "1.0.103"
[dev-dependencies.serde_json]
version = "1.0.0"
[dev-dependencies.serde_test]
version = "1.0.19"
[[example]]
name = "v0"
path = "examples/v0.rs"
required-features = ["std"]
[[example]]
name = "v2"
path = "examples/v2.rs"
required-features = ["std"]
[[example]]
name = "v2-separate-creator-constructor"
path = "examples/v2-separate-creator-constructor.rs"
required-features = ["std"]
[features]
base64 = ["bitcoin/base64"]
default = ["std"]
miniscript-no-std = ["miniscript/no-std"]
miniscript-std = ["std", "miniscript/std"]
rand = ["bitcoin/rand"]
rand-std = ["bitcoin/rand-std"]
serde = ["actual-serde", "bitcoin/serde", "bitcoin-internals/serde"]
std = ["bitcoin/std", "bitcoin-internals/std"]
[lib]
name = "psbt_v2"
path = "src/lib.rs"
[package]
authors = ["Tobin C. Harding <me@tobin.cc>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["cryptography::cryptocurrencies"]
description = "Partially Signed Bitcoin Transaction, v0 and v2"
edition = "2021"
exclude = ["tests", "contrib"]
keywords = ["psbt", "bip-174", "bip174", "bip-370", "bip370"]
license = "CC0-1.0"
name = "psbt-v2"
readme = "README.md"
repository = "https://github.com/tcharding/rust-psbt/"
rust-version = "1.63.0"
version = "0.2.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]