forked from romanz/electrs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
52 lines (47 loc) · 1.23 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
[package]
name = "addrindexrs"
version = "0.3.0"
authors = ["Roman Zeyde <[email protected]>", "kenshin-samourai <[email protected]>"]
description = "An efficient address indexer in Rust"
license = "MIT"
homepage = "https://github.com/Samourai-Wallet/addrindexrs"
repository = "https://github.com/Samourai-Wallet/addrindexrs"
keywords = ["bitcoin", "server", "index", "database"]
documentation = "https://github.com/Samourai-Wallet/addrindexrs/blob/master/doc/usage.md"
readme = "README.md"
edition = "2018"
build = "build.rs"
[package.metadata.configure_me]
spec = "config_spec.toml"
[profile.release]
lto = true
[features]
latest_rust = [] # use latest Rust features (otherwise, support Rust 1.34)
[dependencies]
base64 = "0.10"
bincode = "1.0"
bitcoin = { version = "0.21", features = ["use-serde"] }
bitcoin_hashes = "0.7.1"
configure_me = "0.3.3"
crossbeam-channel = "0.3"
dirs = "1.0"
error-chain = "0.12"
glob = "0.3"
hex = "0.3"
libc = "0.2"
log = "0.4"
lru = "0.1"
num_cpus = "1.0"
page_size = "0.4"
rocksdb = "0.12"
rust-crypto = "0.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
signal-hook = "0.1"
stderrlog = "0.4.1"
sysconf = ">=0.3.4"
time = "0.1"
tiny_http = "0.6"
[build-dependencies]
configure_me_codegen = "0.3.12"