-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
30 lines (27 loc) · 1.04 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
[package]
name = "ldk-bdk-sample"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lightning = { version = "0.0.104", features = ["max_level_trace"] }
lightning-block-sync = { version = "0.0.104", features = [ "rpc-client" ] }
lightning-invoice = { version = "0.12.0" }
lightning-net-tokio = { version = "0.0.104" }
lightning-persister = { version = "0.0.104" }
lightning-background-processor = { version = "0.0.104" }
base64 = "0.13.0"
bitcoin = "0.27"
bitcoin-bech32 = "0.12"
bech32 = "0.8"
hex = "0.3"
futures = "0.3"
chrono = "0.4"
rand = "0.4"
serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "1.0" }
ureq = { version = "~2.2.0", features = ["json"] }
tokio = { version = "1.5", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
log = "^0.4"
bdk = { git = "https://github.com/johncantrell97/bdk", commit="261e333" }
bdk-ldk = { git = "https://github.com/johncantrell97/bdk-ldk", commit="44a0557" }