-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
42 lines (37 loc) · 957 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
33
34
35
36
37
38
39
40
41
42
[package]
name = "murmel"
version = "0.2.1"
authors = ["Tamas Blummer <[email protected]>"]
license = "Apache-2.0"
homepage = "https://github.com/rust-bitcoin/murmel/"
repository = "https://github.com/rust-bitcoin/murmel/"
documentation = "https://github.com/rust-bitcoin/murmel/"
description = "Murmel Bitcoin node"
keywords = [ "bitcoin" ]
readme = "README.md"
edition = "2018"
[features]
default = ["hammersbald"]
[lib]
name = "murmel"
path = "src/lib.rs"
[dependencies]
lightning = { version ="0.0.9", optional=true }
bitcoin = { version= "0.21", features=["use-serde"]}
bitcoin_hashes = "0.7"
mio = "0.6"
rand = "0.7"
log = "0.4"
simple_logger = "0.5.0"
byteorder = "1.2"
lru-cache = "0.1.1"
futures-preview = "=0.3.0-alpha.18"
futures-timer = "0.3"
serde="1"
serde_derive="1"
## optional
hammersbald = { version= "2.4", features=["bitcoin_support"], optional=true }
[dev-dependencies]
rustc-serialize = "0.3"
hex = "0.3"
tempfile = "3.0.2"