diff --git a/Cargo.lock b/Cargo.lock index 60c5fd01..91db98ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/servers/Cargo.toml b/servers/Cargo.toml index d8a88833..e2ef6a48 100644 --- a/servers/Cargo.toml +++ b/servers/Cargo.toml @@ -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" } diff --git a/servers/tests/api.rs b/servers/tests/api.rs index d8944e6b..de856e82 100644 --- a/servers/tests/api.rs +++ b/servers/tests/api.rs @@ -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;