mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2025-12-29 20:04:30 +01:00
* Rename init() to connect() * Shorten commit ID for secp256k1-zkp dependency * Update RN bindings * Rename the manually coded init function to connect * Update RN example app --------- Co-authored-by: Ross Savage <hello@satimoto.com> Co-authored-by: Ross Savage <551697+dangeross@users.noreply.github.com>
23 lines
737 B
TOML
23 lines
737 B
TOML
[package]
|
|
name = "ls-sdk-cli"
|
|
edition = "2021"
|
|
version = "0.0.1"
|
|
|
|
# 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"
|
|
clap = { version = "4.5.1", features = ["derive"] }
|
|
env_logger = "0.11"
|
|
log = "0.4.20"
|
|
ls-sdk = { path = "../lib/ls-sdk-core" }
|
|
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"
|
|
|
|
[patch.crates-io]
|
|
# https://github.com/BlockstreamResearch/rust-secp256k1-zkp/pull/48/commits
|
|
secp256k1-zkp = {git = "https://github.com/BlockstreamResearch/rust-secp256k1-zkp.git", rev = "60e631c24"}
|