blockstream-electrs/Cargo.toml

34 lines
846 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-04-08 20:48:55 +00:00
version = "0.1.0"
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-05-16 18:53:18 +00:00
bitcoin = "0.13"
2018-06-01 16:08:22 +00:00
chan = "0.1"
chan-signal = "0.3"
clap = "2.31"
error-chain = "0.12"
hex = "0.3"
2018-04-08 20:48:55 +00:00
log = "0.4"
2018-06-12 15:47:28 +00:00
prometheus = "0.4"
2018-07-07 07:34:32 +00:00
rocksdb = { git = "https://github.com/pingcap/rust-rocksdb", rev = "9a1c83c5382fbaee8a5102213c711bbe52d71470" }
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"
time = "0.1"
2018-06-12 15:47:28 +00:00
tiny_http = "0.6"
2018-06-21 11:06:09 +00:00
glob = "0.2"