[package] name = "cat-signer-api" version = "0.1.0" edition = "2021" description = "An api client for working with the OP_CAT signer" license = "MIT" authors = ["benthecarman "] documentation = "https://docs.rs/cat-signer-api" repository = "https://github.com/taproot-wizards/cat-signer" keywords = ["bitcoin", "taproot", "signer", "cat", "envelope"] [dependencies] cat-envelope = { path = "../cat-envelope", version = "0.1.0", features = ["use-serde"] } bitcoin = { version = "0.32.4", features = ["actual-serde", "serde"] } serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0.128" } reqwest = { version = "0.12.9", default-features = false, features = ["json", "rustls-tls"], optional = true } [features] default = ["api-client"] api-client = ["reqwest"]