Clean servers crate dev dependency on config (#2099)

This commit is contained in:
Ignotus Peverell 2018-12-10 11:21:35 -08:00 committed by GitHub
commit e24e087fd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 3 deletions

1
Cargo.lock generated
View file

@ -886,7 +886,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",

View file

@ -37,4 +37,3 @@ grin_wallet = { path = "../wallet", version = "0.4.2" }
[dev-dependencies]
blake2-rfc = "0.2"
grin_config = { path = "../config", version = "0.4.2" }

View file

@ -22,7 +22,6 @@ use self::util::init_test_logger;
use self::util::Mutex;
use crate::framework::{LocalServerContainer, LocalServerContainerConfig};
use grin_api as api;
use grin_config as config;
use grin_core as core;
use grin_p2p as p2p;
use grin_util as util;