-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
37 lines (34 loc) · 1.18 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
[package]
edition = "2021"
name = "lnsploit"
version = "0.1.0"
[build]
rustflags = ["--cfg", "tokio_unstable"]
[dependencies]
console-subscriber = "0.1.10"
lightning = { version = "0.0.116", features = ["max_level_trace"] }
lightning-block-sync = { version = "0.0.116", features = [ "rpc-client" ] }
lightning-net-tokio = { version = "0.0.116" }
lightning-invoice = { version = "0.24.0" }
lightning-background-processor = { version = "0.0.116" }
bip32 = "0.4.0"
bitcoin = "0.29.1"
bitcoin-bech32 = "0.12"
bitcoincore-rpc = { git = "https://github.com/benthecarman/rust-bitcoincore-rpc", rev = "badf7fcc8a7d996b7465c231350dbe040a201743" }
secp256k1 = "0.24.0"
anyhow = "1.0.64"
chrono = "0.4.22"
rand = "0.4"
crossterm = "0.25.0"
tokio = { version = "1.21.0", features = ["rt-multi-thread", "macros", "time", "sync"] }
tui = { package = "ratatui", version = "0.22.0" }
async-trait = "0.1.57"
futures = "0.3.24"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
diesel = { version = "2.0", features = ["sqlite", "r2d2"] }
diesel_migrations = "2.1.0"
uuid = { version = "1.1.2", features = ["v4"] }
rand_core = { version = "0.6", features = ["std"] }
hex = "0.4.3"
which = "4.3.0"