1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00
electrs/Cargo.toml

42 lines
900 B
TOML
Raw Normal View History

2018-04-08 22:48:55 +02:00
[package]
2018-05-31 13:29:44 +02:00
name = "electrs"
2019-05-09 10:48:02 +02:00
version = "0.6.1"
2018-04-08 22:48:55 +02:00
authors = ["Roman Zeyde <me@romanzey.de>"]
2018-07-02 11:32:42 +02: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"
edition = "2018"
2018-04-08 22:48:55 +02:00
[dependencies]
arrayref = "0.3"
2019-03-28 14:10:45 +01:00
base64 = "0.10"
bincode = "1.0"
2019-03-28 12:51:46 +01:00
bitcoin = "0.18"
2019-03-02 20:07:37 +01:00
bitcoin_hashes = "0.3"
clap = "2.31"
crossbeam-channel = "0.3"
dirs = "1.0"
error-chain = "0.12"
2019-03-28 14:10:45 +01:00
glob = "0.3"
hex = "0.3"
libc = "0.2"
2018-04-08 22:48:55 +02:00
log = "0.4"
lru = "0.1"
num_cpus = "1.0"
page_size = "0.4"
2019-01-21 13:17:45 +01:00
prometheus = "0.5"
2019-03-28 12:27:59 +01:00
rocksdb = "0.12.1"
rust-crypto = "0.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
signal-hook = "0.1"
2018-07-07 10:02:29 +02:00
stderrlog = "0.4.1"
2018-08-29 22:28:13 +02:00
sysconf = ">=0.3.4"
time = "0.1"
2018-06-12 17:47:28 +02:00
tiny_http = "0.6"