This reverts commit 876d83af6518a3e4ae45e156ef2952a7e67affc1.
TAP_KEY_SIG was in fact not implemented by specter version 1.9.0
db3ce3e918
68 lines
1.8 KiB
TOML
68 lines
1.8 KiB
TOML
[package]
|
|
name = "liana_gui"
|
|
version = "5.0.0"
|
|
readme = "README.md"
|
|
description = "Liana GUI"
|
|
repository = "https://github.com/wizardsardine/liana"
|
|
license = "BSD-3-Clause"
|
|
authors = ["Edouard Paris <m@edouard.paris>"]
|
|
edition = "2018"
|
|
resolver = "2"
|
|
|
|
[[bin]]
|
|
name = "liana-gui"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
async-hwi = "0.0.18"
|
|
liana = { git = "https://github.com/wizardsardine/liana", branch = "master", default-features = false, features = ["nonblocking_shutdown"] }
|
|
liana_ui = { path = "ui" }
|
|
backtrace = "0.3"
|
|
hex = "0.4.3"
|
|
|
|
iced = { version = "0.12.1", default-features = false, features = ["tokio", "svg", "qr_code", "image", "lazy", "wgpu", "advanced"] }
|
|
iced_runtime = "0.12.1"
|
|
|
|
tokio = {version = "1.21.0", features = ["signal"]}
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# Used to ping bitcoind node
|
|
jsonrpc = "0.12"
|
|
|
|
# Logging stuff
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = "0.3.16"
|
|
log = "0.4"
|
|
|
|
dirs = "3.0.1"
|
|
toml = "0.5"
|
|
|
|
chrono = "0.4.38"
|
|
|
|
# Used for managing internal bitcoind
|
|
base64 = "0.21"
|
|
bitcoin_hashes = "0.12"
|
|
reqwest = { version = "0.11", default-features=false, features = ["rustls-tls"] }
|
|
rust-ini = "0.19.0"
|
|
|
|
|
|
[patch.crates-io]
|
|
iced_style = { git = "https://github.com/edouardparis/iced", branch = "patch-0.12.3"}
|
|
iced_winit = { git = "https://github.com/edouardparis/iced", branch = "patch-0.12.3"}
|
|
iced_futures = { git = "https://github.com/edouardparis/iced", branch = "patch-0.12.3"}
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
zip = { version = "0.6", default-features=false, features = ["bzip2", "deflate"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
tar = { version = "0.4", default-features=false }
|
|
flate2 = { version = "1.0", default-features=false }
|
|
|
|
[dev-dependencies]
|
|
tokio = {version = "1.9.0", features = ["rt", "macros"]}
|
|
|
|
[workspace]
|
|
members = ["ui"]
|