Skip to content

Commit d3cac19

Browse files
committed
fix: issues caused by new cargo version
1 parent 1c21c9c commit d3cac19

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

src/jormungandr/testing/jormungandr-automation/src/jormungandr/configuration/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::{
88
mod block0;
99
mod jormungandr_config;
1010
mod node;
11-
mod secret;
11+
pub mod secret;
1212

1313
pub use block0::Block0ConfigurationBuilder;
1414
pub use jormungandr_config::EitherHashOrBlock0;

src/jormungandr/testing/jormungandr-automation/src/jormungandr/legacy/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ pub use config::{
88
LegacyConfigError, LegacyNodeConfig, LegacyNodeConfigBuilder, LegacyNodeConfigConverter,
99
LegacyNodeConfigManager,
1010
};
11-
pub use jormungandr_lib::interfaces::{
12-
Log, Mempool, NodeConfig, P2p, Policy, Rest, TopicsOfInterest, TrustedPeer,
13-
};
1411
use jortestkit::file;
1512
pub use rest::BackwardCompatibleRest;
1613
use std::path::PathBuf;

src/jormungandr/testing/jormungandr-automation/src/jormungandr/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub mod grpc;
1616
pub use self::{
1717
configuration::{
1818
get_available_port, Block0ConfigurationBuilder, EitherHashOrBlock0, NodeConfigBuilder,
19-
NodeConfigManager, SecretModelFactory,
19+
NodeConfigManager, secret::SecretModelFactory,
2020
},
2121
explorer::{
2222
compare_schema as compare_explorer_schema, Explorer, ExplorerError, ExplorerProcess,

src/jormungandr/testing/jormungandr-automation/src/jormungandr/starter/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![allow(dead_code)]
22

33
mod commands;
4-
pub use commands::{get_command, CommandBuilder};
4+
pub use commands::get_command;
55

66
mod params;
77
mod testing_directory;

0 commit comments

Comments
 (0)