blockstream-electrs/Cargo.toml

39 lines
834 B
TOML
Raw Normal View History

2018-04-08 20:48:55 +00:00
[package]
2018-05-31 11:29:44 +00:00
name = "electrs"
2018-10-14 11:39:31 +00:00
version = "0.4.1"
2018-04-08 20:48:55 +00:00
authors = ["Roman Zeyde <me@romanzey.de>"]
2018-07-02 09:32:42 +00:00
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"
2018-04-08 20:48:55 +00:00
[dependencies]
arrayref = "0.3"
base64 = "0.9"
bincode = "1.0"
2018-08-24 08:57:19 +00:00
bitcoin = "0.14"
2018-06-01 16:08:22 +00:00
chan = "0.1"
chan-signal = "0.3"
clap = "2.31"
dirs = "1.0"
error-chain = "0.12"
glob = "0.2"
hex = "0.3"
libc = "0.2"
2018-04-08 20:48:55 +00:00
log = "0.4"
num_cpus = "1.0"
page_size = "0.4"
2018-06-12 15:47:28 +00:00
prometheus = "0.4"
rocksdb = "0.10.1"
rust-crypto = "0.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
2018-07-07 08:02:29 +00:00
stderrlog = "0.4.1"
2018-08-29 20:28:13 +00:00
sysconf = ">=0.3.4"
time = "0.1"
2018-06-12 15:47:28 +00:00
tiny_http = "0.6"