This repository has been archived by the owner on Aug 12, 2022. It is now read-only.
forked from Blockstream/electrs
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
73 lines (66 loc) · 1.53 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
67
68
69
70
71
72
73
[package]
name = "electrs"
version = "0.4.1"
authors = ["Roman Zeyde <[email protected]>"]
description = "An efficient re-implementation of Electrum Server in Rust"
license = "MIT"
homepage = "https://github.com/romanz/electrs"
repository = "https://github.com/romanz/electrs"
keywords = ["bitcoin", "electrum", "server", "index", "database"]
documentation = "https://docs.rs/electrs/"
readme = "README.md"
edition = "2018"
[features]
default = []
liquid = ["elements", "lazy_static"]
[dependencies]
arraydeque = "0.4"
arrayref = "0.3"
base64 = "0.10"
bincode = "1.0"
chan = "0.1"
chan-signal = "0.3"
clap = "2.31"
dirs = "1.0"
error-chain = "0.12"
futures = "0.1"
glob = "0.3"
hex = "0.3.1"
hyper = "0.12.33"
itertools = "0.8.0"
lazy_static = { version = "1.3.0", optional = true }
libc = "0.2"
log = "0.4"
lru = "0.1"
lru-cache = "0.1.1"
num_cpus = "1.0"
page_size = "0.4"
prometheus = "0.5"
rayon = "1.0"
rocksdb = "0.12.1"
rust-crypto = "0.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
stderrlog = "0.4.1"
sysconf = ">=0.3.4"
time = "0.1"
tiny_http = "0.6"
url = "1.0"
[dependencies.bitcoin]
version = "0.19.1"
features = ["use-serde"]
[dependencies.elements]
optional = true
git = "https://github.com/elementsproject/rust-elements"
rev = "ae548a4748508775653a65daa828bb5a0207a325"
features = ["serde-feature"]
[patch."https://github.com/elementsproject/rust-elements".elements]
git = "https://github.com/stevenroose/rust-elements"
rev = "bitcoin-0.19"
[dev-dependencies]
tempfile = "3.0"
[profile.release]
lto = true
panic = 'abort'
codegen-units = 1