parity-zcash/db/Cargo.toml

22 lines
558 B
TOML
Raw Normal View History

2016-10-13 04:13:50 -07:00
[package]
name = "db"
version = "0.1.0"
authors = ["Nikolay Volf <nikvolf@gmail.com>"]
[dependencies]
2016-12-14 11:59:58 -08:00
elastic-array = { git = "https://github.com/ethcore/elastic-array" }
2016-12-26 07:49:47 -08:00
rocksdb = { git = "https://github.com/ethcore/rust-rocksdb", branch = "bloom" }
2016-10-13 04:13:50 -07:00
ethcore-devtools = { path = "../devtools" }
2016-10-13 05:06:12 -07:00
primitives = { path = "../primitives" }
2016-10-13 12:06:18 -07:00
byteorder = "0.5"
chain = { path = "../chain" }
serialization = { path = "../serialization" }
parking_lot = "0.3"
2016-10-18 08:23:40 -07:00
test-data = { path = "../test-data" }
2016-10-26 13:58:19 -07:00
bit-vec = "0.4"
2016-11-14 12:56:43 -08:00
log = "0.3"
2016-12-09 04:10:52 -08:00
lru-cache = "0.1.0"
[features]
dev = []