mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2026-01-31 11:54:24 +01:00
* Store the payer note * Correctly tokenize quoted strings * Fix regtest * Address review comments * Update to be LUD-12 compatible * Only handle LNURL/BOLT12 payer notes * Apply suggestions from code review * Store the send payer note in payment details
24 lines
851 B
TOML
24 lines
851 B
TOML
[package]
|
|
name = "breez-liquid-cli"
|
|
edition = "2021"
|
|
version = "0.3.3"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.80"
|
|
bip39 = "2.0.0"
|
|
breez-sdk-liquid = { path = "../lib/core" }
|
|
clap = { version = "4.5.1", features = ["derive"] }
|
|
log = "0.4.20"
|
|
qrcode-rs = { version = "0.1", default-features = false }
|
|
rustyline = { version = "13.0.0", features = ["derive"] }
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
serde_json = "1.0.115"
|
|
tokio = { version = "1", features = ["macros"] }
|
|
shellwords = "1.1.0"
|
|
|
|
[patch.crates-io]
|
|
# https://github.com/BlockstreamResearch/rust-secp256k1-zkp/pull/48/commits and rebased on secp256k1-zkp 0.11.0
|
|
secp256k1-zkp = { git = "https://github.com/breez/rust-secp256k1-zkp.git", rev = "eac2e479255a6e32b5588bc25ee53c642fdd8395" }
|