This repository has been archived by the owner on Feb 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
66 lines (62 loc) · 1.81 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "electrscash"
version = "3.1.0"
authors = ["Bitcoin Unlimited developers <[email protected]", "Roman Zeyde <[email protected]>"]
description = "An efficient implementation of Electrum Server"
license = "MIT"
homepage = "https://github.com/BitcoinUnlimited/ElectrsCash"
repository = "https://github.com/BitcoinUnlimited/ElectrsCash"
keywords = ["bitcoin", "cash", "electrum", "server", "index"]
documentation = "https://docs.rs/electrscash/"
readme = "README.md"
edition = "2018"
build = "build.rs"
[package.metadata.configure_me]
spec = "internal/config_specification.toml"
[features]
default = ["rocksdb/snappy", "rocksdb/lz4", "rocksdb/zstd", "rocksdb/zlib", "rocksdb/bzip2"]
[dependencies]
async-std = "1.7.0"
base64 = "0.10"
bincode = "1.0"
bitcoincash = { version = "0.25", features = ["use-serde"] }
bytecodec = "0.4.13"
byteorder = "1"
configure_me = "0.4.0"
crossbeam-channel = "0.3"
error-chain = "0.12"
glob = "0.3"
hex = "0.3"
httpcodec = "0.2.3"
jemallocator = "0.3.2"
jemalloc-ctl = "0.3.3"
libc = "0.2"
log = "0.4"
num_cpus = "1.0"
page_size = "0.4"
prometheus = "0.11"
protobuf = "= 2.14.0" # https://github.com/stepancheg/rust-protobuf/blob/master/CHANGELOG.md#2150---2020-06-21
rocksdb = { version = "0.15.0", default-features = false } # due to https://github.com/romanz/electrs/issues/193
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
signal-hook = "0.1"
stderrlog = "0.5.1"
sysconf = ">=0.3.4"
time = "0.1"
tiny_http = "0.6"
sha2 = "0.9.2"
sha-1 = "0.9.2"
dirs-next = "2.0.0"
unsigned-varint = "0.2.3"
cashaccount-sys = ">=0.1"
c_fixed_string = "0.2"
version-compare = "0.0.10"
bitcoincash-addr = "0.5.2"
indexmap = "1.6.0"
rand = "0.7.3"
rust_decimal = { version = "1.8.1", features = ["serde-float"] }
genawaiter = "0.99.1"
rayon = "1.5.0"
[build-dependencies]
configure_me_codegen = "0.4.0"