utwallet/Cargo.toml

37 lines
1.0 KiB
TOML
Raw Permalink Normal View History

[package]
2023-05-25 20:42:44 +03:00
name = "utlnwallet"
2024-09-04 21:31:58 +03:00
version = "0.0.11"
authors = ["Richard Ulrich <richi+utwallet@ulrichard.ch>"]
edition = "2021"
build = "src/build.rs"
[dependencies]
qmetaobject = "0.2.3"
2022-11-22 01:49:23 +03:00
qt_core = "0.5.0"
gettext-rs = "0.7"
cstr = "0.2.8"
cpp = "0.5"
2024-09-04 21:31:58 +03:00
ldk-node = "0.3"
2024-05-06 21:46:32 +03:00
serde = "1.0"
serde_json = "1.0"
qrcode-png = "0.4"
chrono = "0.4"
2023-03-31 20:53:15 +03:00
regex = "1"
rand_core = "0.6"
2024-05-06 21:46:32 +03:00
lnurl-rs = "0.5"
cmc = "0.3"
2024-09-04 21:31:58 +03:00
electrum2descriptors = "0.5"
2023-10-25 23:45:35 +03:00
# the following are also dependencies of ldk-node that are not exposed. The versions have to be matched manually
2024-05-06 21:46:32 +03:00
bdk = { version = "0.29", default-features = false, features = ["std", "use-esplora-async", "keys-bip39"] }
2023-10-25 23:45:35 +03:00
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "time", "sync"] }
2024-09-04 21:31:58 +03:00
miniscript = "10.2"
2023-10-25 23:45:35 +03:00
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
[build-dependencies]
cpp_build = "0.5"
2022-12-13 23:06:34 +03:00
cmake = "0.1"
[dev-dependencies]
2024-09-04 21:31:58 +03:00
electrsd = { version= "0.24", features = ["bitcoind_23_0", "esplora_a33e97e1", "legacy"] }
2023-10-25 23:45:35 +03:00
rstest = "0.11"