Files
breez-sdk-liquid/lib/core/Cargo.toml

45 lines
1.6 KiB
TOML

[package]
name = "breez-liquid-sdk"
edition = "2021"
version.workspace = true
[lib]
name = "breez_liquid_sdk"
crate-type = ["lib", "cdylib", "staticlib"]
[dependencies]
anyhow = { workspace = true }
bip39 = { version = "2.0.0", features = ["serde"] }
#boltz-client = { git = "https://github.com/SatoshiPortal/boltz-rust", rev = "a05731cc33030ada9ae14afcafe0cded22842ba6" }
#boltz-client = { git = "https://github.com/hydra-yse/boltz-rust", rev = "b632238935ad5f5b60435a7fc494ded2f232cf12" }
# Combination of
# - latest fixes from Boltz (fallback for get_utxos) needed for claiming as soon as lockup tx is seen in mempool (receive case)
# - latest fixes from Antonio (get reverse swap pairs, necessary structs, etc)
# https://github.com/ok300/boltz-rust/commits/ok300-combo-boltz-fallback-get-utxos-yse-get-submarine-pairs/
boltz-client = { git = "https://github.com/hydra-yse/boltz-rust", rev = "be8395900495e415699a54e15f4bd0bc6d774237" }
flutter_rust_bridge = { version = "=2.0.0-dev.33", features = ["chrono"], optional = true }
log = "0.4.20"
lwk_common = "0.3.0"
lwk_signer = "0.3.0"
lwk_wollet = "0.3.0"
rusqlite = { version = "0.31", features = ["backup", "bundled"] }
rusqlite_migration = "1.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.116"
thiserror = { workspace = true }
tungstenite = { version = "0.21.0", features = ["native-tls-vendored"] }
openssl = { version = "0.10", features = ["vendored"] }
# TODO Remove once fully migrated to v2 API
elements = "0.24.1"
[dev-dependencies]
tempdir = "0.3.7"
uuid = { version = "1.8.0", features = ["v4"] }
[features]
default = ["frb"]
frb = ["dep:flutter_rust_bridge"]