[package] name = "cat-envelope" version = "0.1.0" edition = "2021" description = "A library for wrapping and unwrapping taproot scripts into an envelope for working with the OP_CAT signer" license = "MIT" authors = ["benthecarman "] documentation = "https://docs.rs/cat-envelope" repository = "https://github.com/taproot-wizards/cat-signer" keywords = ["bitcoin", "taproot", "signer", "cat", "envelope"] [features] use-serde = ["bitcoin/actual-serde", "bitcoin/serde", "serde_json", "serde"] [dependencies] anyhow = "1.0.69" bitcoin = { version = "0.32.5" } serde = { version = "1.0", features = ["derive"], optional = true } serde_json = { version = "1.0.128", optional = true } [dev-dependencies] bitcoin-tx-verify = "0.1.2" bitcoin = { version = "0.32.5", features = ["rand", "rand-std"] } rand = "0.8.5"