prepare bigint for crates.io

This commit is contained in:
Robert Habermeier
2016-09-13 15:26:31 +02:00
parent 83ddce011d
commit 42a8ea0002
12 changed files with 31 additions and 27 deletions

View File

@@ -8,5 +8,5 @@ rust-crypto = "0.2.36"
tiny-keccak = "1.0"
eth-secp256k1 = { git = "https://github.com/ethcore/rust-secp256k1" }
ethkey = { path = "../ethkey" }
bigint = { path = "../util/bigint" }
ethcore-bigint = { path = "../util/bigint" }

View File

@@ -16,7 +16,7 @@
//! Crypto utils used ethstore and network.
extern crate bigint;
extern crate ethcore_bigint as bigint;
extern crate tiny_keccak;
extern crate crypto as rcrypto;
extern crate secp256k1;