dfac17538f
* trait * implentated, lifetime issue still * full api * test mod * working open * get/retrieve * fix warnings and bug * working serialization of &[u8] parameters * client attributes * fix empty payload ser/de * [ci skip] debug assert out * extra deserialization test * extra serialization test * extra serialization test * serialization fixes, nupdate rocksdb * open test working * result bug & remove some scaffolds * fix warnings * more simple tests * consistent quotes * get rid of dedicated is_open flag * hashmap -> btreemap
25 lines
609 B
TOML
25 lines
609 B
TOML
[package]
|
|
description = "Ethcore Database"
|
|
homepage = "http://ethcore.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore-db"
|
|
version = "1.2.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
syntex = "*"
|
|
ethcore-ipc-codegen = { path = "../ipc/codegen" }
|
|
|
|
[dependencies]
|
|
ethcore-util = { path = "../util" }
|
|
clippy = { version = "0.0.67", optional = true}
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
rocksdb = { git = "https://github.com/ethcore/rust-rocksdb" }
|
|
semver = "0.2"
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
|
|
|
[features]
|
|
dev = ["clippy"]
|