Merge pull request #15 from paritytech/chore/remove-unused-deps

Misc cleanup and unused deps
This commit is contained in:
David 2018-08-08 12:39:20 +02:00 committed by GitHub
commit 109f736ac8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 16 deletions

View File

@ -17,7 +17,7 @@
//! Key-Value store abstraction with `RocksDB` backend.
extern crate elastic_array;
extern crate parity_bytes as bytes; // TODO: name changed; update upstream when `parity-common` is available
extern crate parity_bytes as bytes;
use std::io;
use std::path::Path;

View File

@ -1,13 +0,0 @@
[package]
name = "plain_hasher"
description = "Hasher for 32-bit keys."
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
keywords = ["hash", "hasher"]
homepage = "https://github.com/paritytech/plain_hasher"
[dependencies]
crunchy = "0.1.6"
ethereum-types = "0.3"
hashdb = { version = "0.2.0", path = "../hashdb" }

View File

@ -8,7 +8,6 @@ license = "GPL-3.0"
[dependencies]
elastic-array = "0.10"
ethereum-types = "0.3"
hashdb = { version = "0.2", path = "../hashdb" }
rlp = { version = "0.2.1", path = "../rlp" }

View File

@ -19,7 +19,6 @@
//! This module should be used to generate trie root hash.
extern crate elastic_array;
extern crate ethereum_types;
extern crate hashdb;
extern crate rlp;
#[cfg(test)] extern crate keccak_hasher;