rust-silentpayments/Cargo.toml

30 lines
714 B
TOML
Raw Permalink Normal View History

2023-07-23 13:15:45 +01:00
[package]
name = "silentpayments"
version = "0.1.0"
authors = ["cygnet <cygnet3@proton.me>"]
2023-07-23 13:15:45 +01:00
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"
2023-07-23 13:15:45 +01:00
2023-07-23 20:42:34 +01:00
[lib]
name = "silentpayments"
crate-type = ["lib"]
2023-07-23 13:15:45 +01:00
[features]
default = ["sending", "receiving"]
sending = []
receiving = []
2023-07-23 13:15:45 +01:00
[dependencies]
2023-08-17 14:28:32 +01:00
secp256k1 = {version = "0.24", features = ["bitcoin-hashes-std"] }
2023-07-23 13:15:45 +01:00
hex = "0.4"
bech32 = "0.9"
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"