mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
Clean servers crate dev dependency on config
This commit is contained in:
parent
cd135c4dca
commit
71664457de
5 changed files with 0 additions and 7 deletions
3
Cargo.lock
generated
3
Cargo.lock
generated
|
@ -751,7 +751,6 @@ dependencies = [
|
|||
"grin_keychain 0.4.2",
|
||||
"grin_store 0.4.2",
|
||||
"grin_util 0.4.2",
|
||||
"grin_wallet 0.4.2",
|
||||
"lmdb-zero 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"lru-cache 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -854,7 +853,6 @@ dependencies = [
|
|||
"grin_keychain 0.4.2",
|
||||
"grin_store 0.4.2",
|
||||
"grin_util 0.4.2",
|
||||
"grin_wallet 0.4.2",
|
||||
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -885,7 +883,6 @@ dependencies = [
|
|||
"futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"grin_api 0.4.2",
|
||||
"grin_chain 0.4.2",
|
||||
"grin_config 0.4.2",
|
||||
"grin_core 0.4.2",
|
||||
"grin_keychain 0.4.2",
|
||||
"grin_p2p 0.4.2",
|
||||
|
|
|
@ -36,4 +36,3 @@ grin_wallet = { path = "../wallet", version = "0.4.2" }
|
|||
|
||||
[dev-dependencies]
|
||||
blake2-rfc = "0.2"
|
||||
grin_config = { path = "../config", version = "0.4.2" }
|
||||
|
|
|
@ -17,7 +17,6 @@ extern crate log;
|
|||
|
||||
extern crate grin_api as api;
|
||||
extern crate grin_chain as chain;
|
||||
extern crate grin_config as config;
|
||||
extern crate grin_core as core;
|
||||
extern crate grin_p2p as p2p;
|
||||
extern crate grin_servers as servers;
|
||||
|
|
|
@ -17,7 +17,6 @@ extern crate log;
|
|||
|
||||
extern crate grin_api as api;
|
||||
extern crate grin_chain as chain;
|
||||
extern crate grin_config as config;
|
||||
extern crate grin_core as core;
|
||||
extern crate grin_p2p as p2p;
|
||||
extern crate grin_servers as servers;
|
||||
|
|
|
@ -17,7 +17,6 @@ extern crate log;
|
|||
|
||||
extern crate grin_api as api;
|
||||
extern crate grin_chain as chain;
|
||||
extern crate grin_config as config;
|
||||
extern crate grin_core as core;
|
||||
extern crate grin_p2p as p2p;
|
||||
extern crate grin_servers as servers;
|
||||
|
|
Loading…
Reference in a new issue