71 lines
1.9 KiB
TOML
71 lines
1.9 KiB
TOML
[package]
|
|
name = "liana_gui"
|
|
version = "7.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 = { version = "0.0.23" }
|
|
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"
|
|
|
|
# Used to verify RFC-compliance of an email
|
|
email_address = "0.2.7"
|
|
|
|
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 = ["json", "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"]
|