[package] name = "bitcoin-push-decoder" version = "0.3.0" authors = ["Devrandom ", "Ken Sedgwick "] edition = "2021" license = "Apache-2.0" description = "A library for implementing a bitcoind RPC client." homepage = "https://gitlab.com/lightning-signer/docs/" repository = "https://gitlab.com/lightning-signer/txoo" readme = "README.md" rust-version = "1.60.0" [features] default = ["std"] std = ["bitcoin/std"] no-std = ["bitcoin/no-std", "core2/alloc"] [lib] name = "push_decoder" path = "src/lib.rs" [dependencies] bitcoin = { version = "0.30", default_features = false } core2 = { version = "0.3", optional = true, default-features = false } log = "0.4" hex = { version = "0.4", default-features = false, features = ["alloc"] } [dev-dependencies] test-log = "0.2" env_logger = "0.10"