forked from BP-WG/bp-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (29 loc) · 968 Bytes
/
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
[package]
name = "bp_node"
description = "Bitcoin protocol node"
version = "0.1.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
license = "MIT"
edition = "2018"
[dependencies]
dotenv = "~0.15"
clap = { git = "https://github.com/clap-rs/clap.git" }
chrono = "~0.4"
derive_wrapper = "~0.1"
async-trait = "~0.1"
log = { version = "~0.4", features = ["max_level_trace", "release_max_level_debug"] }
env_logger = "~0.7"
diesel = { version = "~1.4", features = ["postgres", "uuid", "numeric", "chrono"] }
tokio = { version = "~0.2", features = ["full"] }
futures = "~0.3"
zmq = "~0.9"
tiny_http = "~0.6"
prometheus = "~0.8"
[dependencies.lnpbp]
git = "https://github.com/lnp-bp/rust-lnpbp"
branch = "feat-api"
features = ["use-tor", "use-tokio", "use-log", "use-daemons"]
# lnpbp requires custom version of bitcoin, so to maintain type compatibility
# we have to use library through lnpbp::bitcoin handle and not via direct
# dependency
#bitcoin = "~0.23"