liana/liana-gui/Cargo.toml
edouardparis 144fcaf28e
Merge #1765: feat: add links with info about changing backend or node type
ceec4f9e79cd464f5ea39c0d85f92e199b70a491 feat(gui): add links with info about backend/node settings (Michael Mallan)
0d48f8efee45eee05156b3acea8d8a9f2adbdd1e refactor(installer): fix typo in clipboard enum variant (Michael Mallan)

Pull request description:

  This implements #1755.

  TODO:
  - [x] Update URL to relevant support page

ACKs for top commit:
  edouardparis:
    tACK ceec4f9e79cd464f5ea39c0d85f92e199b70a491

Tree-SHA512: 0bb7a2ea9627953d94d5ae05059ad74646facb5521be3e874b763e52c7eeff2c61784aef81cf84707a9dede35380fa37b1f1f52e30c078dfba55ed2f45efddfa
2025-07-21 14:38:48 +02:00

70 lines
1.7 KiB
TOML

[package]
name = "liana-gui"
version = "11.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.29"
liana = { path = "../liana" }
lianad = { path = "../lianad", default-features = false, features = ["nonblocking_shutdown"] }
liana-ui = { path = "../liana-ui" }
backtrace = "0.3"
hex = "0.4.3"
iced = { version = "0.13.1", default-features = false, features = ["tokio", "svg", "qr_code", "image", "lazy", "wgpu", "advanced", "tiny-skia"] }
iced_aw = { version = "0.12.2", features = ["context_menu"] }
iced_runtime = "0.13.1"
# Used to verify RFC-compliance of an email
email_address = "0.2.7"
tokio = {version = "1.21.0", features = ["signal"]}
async-fd-lock = "0.2.0"
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
libc = "0.2"
base64 = "0.21"
bitcoin_hashes = "0.12"
reqwest = { version = "0.11", default-features=false, features = ["json", "rustls-tls", "stream"] }
rust-ini = "0.19.0"
rfd = "0.15.1"
# Used for opening URLs in browser
open = "5.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"]}