rust-silentpayments/Cargo.toml

30 lines
714 B
TOML

[package]
name = "silentpayments"
version = "0.1.0"
authors = ["cygnet <cygnet3@proton.me>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A library to add silent payments support to wallets"
homepage = "https://github.com/cygnet3/rust-silentpayments"
repository = "https://github.com/cygnet3/rust-silentpayments"
keywords = ["bitcoin", "secp256k1"]
readme = "README.md"
[lib]
name = "silentpayments"
crate-type = ["lib"]
[features]
default = ["sending", "receiving"]
sending = []
receiving = []
[dependencies]
secp256k1 = {version = "0.24", features = ["bitcoin-hashes-std"] }
hex = "0.4"
bech32 = "0.9"
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"