-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (37 loc) · 2 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
37
38
39
40
[package]
name = "smaug"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
base64 = "0.21.2"
# bdk = "0.27.1"
# bdk = { version = "0.29", default-features=false, features = ["std", "key-value-db","async-interface", "use-esplora-async", "rpc"] }
# bdk = { git = "https://github.com/bitcoindevkit/bdk", version = "1.0.0-alpha.1", rev = "8f38e96e4542db2378e2e64cd9289638ee86ba1a" }
bdk = { git = "https://github.com/chrisguida/bdk", version = "1.0.0-alpha.2", rev = "cc32e69a12b8c30e571e6261a8b99dec2cef6ff5" }
# bdk = "1.0.0-alpha.2"
# bdk = { path = "../../lib/bdk/crates/bdk" }
# bdk = { path = "../bdk/crates/bdk" }
# bdk_esplora = { version = "0.3.0", features = ["async-https"] }
# bdk_esplora = { path = "../../lib/bdk/crates/esplora", features = ["async-https"] }
# bdk_esplora = { git = "https://github.com/bitcoindevkit/bdk", rev = "8f38e96e4542db2378e2e64cd9289638ee86ba1a" }
# bdk_file_store = { version = "0.2.0" }
# bdk_file_store = { path = "../../lib/bdk/crates/file_store" }
# bdk_file_store = { path = "../bdk/crates/file_store" }
# bdk_file_store = { git = "https://github.com/bitcoindevkit/bdk", rev = "8f38e96e4542db2378e2e64cd9289638ee86ba1a" }
bdk_file_store = { git = "https://github.com/chrisguida/bdk", rev = "cc32e69a12b8c30e571e6261a8b99dec2cef6ff5" }
# bitcoincore-rpc = { path = "../rust-bitcoincore-rpc/client" }
bitcoincore-rpc = { git = "https://github.com/chrisguida/rust-bitcoincore-rpc", branch = "feat/scanblocks" }
clap = { version = "4.4.0", features = ["derive"] }
cln-plugin = { git = "https://github.com/elementsproject/lightning", version = "0.1.4" }
# cln-plugin = { path = "../../lightning/plugins" }
# cln-plugin = { git = "https://github.com/chrisguida/lightning", version = "0.1.4", branch = "feat/cln-plugin-send-notifs" }
cln-rpc = "0.2.0"
home = "0.5.5"
log = "0.4.18"
serde = "1.0.159"
serde_json = "1.0.72"
[dependencies.tokio]
features = ["net", "rt-multi-thread"]
version = "1"