parity-zcash/db/Cargo.toml

21 lines
482 B
TOML
Raw Normal View History

2016-10-13 04:13:50 -07:00
[package]
name = "db"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
2016-10-13 04:13:50 -07:00
[dependencies]
2016-12-27 07:45:46 -08:00
rocksdb = { git = "https://github.com/ethcore/rust-rocksdb" }
elastic-array = "0.6"
2017-03-26 01:17:28 -07:00
parking_lot = "0.4"
log = "0.4"
bit-vec = "0.4"
2017-04-21 00:54:18 -07:00
lru-cache = "0.1"
primitives = { path = "../primitives" }
serialization = { path = "../serialization" }
chain = { path = "../chain" }
storage = { path = "../storage" }
[dev-dependencies]
2017-04-05 10:51:44 -07:00
tempdir = "0.3"
test-data = { path = "../test-data" }