-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (33 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "utlnwallet"
version = "0.0.11"
authors = ["Richard Ulrich <[email protected]>"]
edition = "2021"
build = "src/build.rs"
[dependencies]
qmetaobject = "0.2.3"
qt_core = "0.5.0"
gettext-rs = "0.7"
cstr = "0.2.8"
cpp = "0.5"
ldk-node = "0.3"
serde = "1.0"
serde_json = "1.0"
qrcode-png = "0.4"
chrono = "0.4"
regex = "1"
rand_core = "0.6"
lnurl-rs = "0.5"
cmc = "0.3"
electrum2descriptors = "0.5"
# the following are also dependencies of ldk-node that are not exposed. The versions have to be matched manually
bdk = { version = "0.29", default-features = false, features = ["std", "use-esplora-async", "keys-bip39"] }
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "time", "sync"] }
miniscript = "10.2"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
[build-dependencies]
cpp_build = "0.5"
cmake = "0.1"
[dev-dependencies]
electrsd = { version= "0.24", features = ["bitcoind_23_0", "esplora_a33e97e1", "legacy"] }
rstest = "0.11"