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

41 lines
1.2 KiB
TOML
Raw Normal View History

2018-04-08 22:48:55 +02:00
[package]
2018-05-31 13:29:44 +02:00
name = "electrs"
2021-03-26 09:05:58 +01:00
version = "0.9.0"
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"
build = "build.rs"
2018-04-08 22:48:55 +02:00
2021-03-26 09:05:58 +01:00
[features]
default = ["rocksdb/zstd", "prometheus/process"]
2021-03-26 09:05:58 +01:00
[package.metadata.configure_me]
spec = "internal/config_specification.toml"
2019-05-30 09:15:12 +02:00
2018-04-08 22:48:55 +02:00
[dependencies]
2021-03-26 09:05:58 +01:00
anyhow = "1.0"
bitcoin = { version = "0.26", features = ["use-serde", "rand"] }
bitcoincore-rpc = "0.13"
configure_me = "0.4"
crossbeam-channel = "0.5"
dirs-next = "2.0"
env_logger = "0.7"
hyper = "0.10"
2018-04-08 22:48:55 +02:00
log = "0.4"
prometheus = { version = "0.12", default-features = false }
2021-03-26 09:05:58 +01:00
rayon = "1.5"
2021-05-20 17:20:14 +02:00
rocksdb = { git = "https://github.com/romanz/rust-rocksdb", rev = "4554d19b2ff2e34493564b4d868454097c74b693", default-features = false } # to support building with Rust 1.41.1 and https://github.com/romanz/electrs/issues/403
rust-crypto = "0.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
2021-03-26 09:05:58 +01:00
signal-hook = "0.3"
[build-dependencies]
2021-03-26 09:05:58 +01:00
configure_me_codegen = "0.4"