4c7413db9d
Otherwise, full compaction may fail.
35 lines
859 B
TOML
35 lines
859 B
TOML
[package]
|
|
name = "electrs"
|
|
version = "0.1.0"
|
|
authors = ["Roman Zeyde <me@romanzey.de>"]
|
|
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"
|
|
|
|
[dependencies]
|
|
arrayref = "0.3"
|
|
base64 = "0.9"
|
|
bincode = "1.0"
|
|
bitcoin = "0.13"
|
|
chan = "0.1"
|
|
chan-signal = "0.3"
|
|
clap = "2.31"
|
|
error-chain = "0.12"
|
|
glob = "0.2"
|
|
hex = "0.3"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
prometheus = "0.4"
|
|
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"
|
|
stderrlog = "0.4.1"
|
|
time = "0.1"
|
|
tiny_http = "0.6"
|