Remove unused `num_cpus` dep
This commit is contained in:
parent
e3c793f702
commit
02718be82f
|
@ -24,7 +24,6 @@ broken_consensus_code = []
|
||||||
[dependencies]
|
[dependencies]
|
||||||
byteorder = "0.3"
|
byteorder = "0.3"
|
||||||
num = "0.1"
|
num = "0.1"
|
||||||
num_cpus = "0.2"
|
|
||||||
rand = "0.3"
|
rand = "0.3"
|
||||||
rust-crypto = "0.2"
|
rust-crypto = "0.2"
|
||||||
rustc-serialize = "0.3"
|
rustc-serialize = "0.3"
|
||||||
|
|
|
@ -45,7 +45,6 @@ extern crate byteorder;
|
||||||
extern crate crypto;
|
extern crate crypto;
|
||||||
#[macro_use] extern crate jsonrpc;
|
#[macro_use] extern crate jsonrpc;
|
||||||
extern crate num;
|
extern crate num;
|
||||||
extern crate num_cpus;
|
|
||||||
extern crate rand;
|
extern crate rand;
|
||||||
extern crate rustc_serialize as serialize;
|
extern crate rustc_serialize as serialize;
|
||||||
extern crate secp256k1;
|
extern crate secp256k1;
|
||||||
|
|
Loading…
Reference in New Issue