diff --git a/src/cat-data-service/src/types/event.rs b/src/cat-data-service/src/types/event.rs index 727680d9cb..2a46f4c723 100644 --- a/src/cat-data-service/src/types/event.rs +++ b/src/cat-data-service/src/types/event.rs @@ -1,3 +1,4 @@ +#![allow(deprecated)] use super::{serialize_option_datetime_as_rfc3339, SerdeType}; use chrono::{DateTime, Utc}; use event_db::types::event::{ diff --git a/src/cat-data-service/src/types/registration.rs b/src/cat-data-service/src/types/registration.rs index c8a5863314..2073f955e0 100644 --- a/src/cat-data-service/src/types/registration.rs +++ b/src/cat-data-service/src/types/registration.rs @@ -1,3 +1,4 @@ +#![allow(deprecated)] use super::{serialize_datetime_as_rfc3339, SerdeType}; use chrono::{DateTime, Utc}; use event_db::types::registration::{ diff --git a/src/cat-data-service/src/types/vit_ss/fund.rs b/src/cat-data-service/src/types/vit_ss/fund.rs index d20bb000a4..522c2f8f06 100644 --- a/src/cat-data-service/src/types/vit_ss/fund.rs +++ b/src/cat-data-service/src/types/vit_ss/fund.rs @@ -1,3 +1,4 @@ +#![allow(deprecated)] use super::super::{serialize_datetime_as_rfc3339, SerdeType}; use chrono::{DateTime, Utc}; use event_db::types::vit_ss::{ diff --git a/src/cat-data-service/src/types/vit_ss/vote_plan.rs b/src/cat-data-service/src/types/vit_ss/vote_plan.rs index 84e99d70f4..5de1166ab0 100644 --- a/src/cat-data-service/src/types/vit_ss/vote_plan.rs +++ b/src/cat-data-service/src/types/vit_ss/vote_plan.rs @@ -1,3 +1,4 @@ +#![allow(deprecated)] use super::super::{serialize_datetime_as_rfc3339, SerdeType}; use chrono::{DateTime, Utc}; use event_db::types::vit_ss::vote_plan::Voteplan; diff --git a/src/chain-libs/chain-crypto/src/lib.rs b/src/chain-libs/chain-crypto/src/lib.rs index 47267a6ab5..0a77dc6290 100644 --- a/src/chain-libs/chain-crypto/src/lib.rs +++ b/src/chain-libs/chain-crypto/src/lib.rs @@ -13,6 +13,7 @@ mod kes; mod key; pub mod multilock; mod sign; +#[allow(hidden_glob_reexports)] mod vrf; pub mod role; diff --git a/src/jormungandr/jormungandr/src/network/client/mod.rs b/src/jormungandr/jormungandr/src/network/client/mod.rs index 5742b99380..be84665901 100644 --- a/src/jormungandr/jormungandr/src/network/client/mod.rs +++ b/src/jormungandr/jormungandr/src/network/client/mod.rs @@ -1,6 +1,6 @@ mod connect; -pub use self::connect::{connect, ConnectError, ConnectFuture, ConnectHandle}; +pub use self::connect::{connect, ConnectError, ConnectHandle}; use super::{ buffer_sizes, convert::{Decode, Encode}, diff --git a/src/jormungandr/testing/jormungandr-automation/src/jcli/command/votes/mod.rs b/src/jormungandr/testing/jormungandr-automation/src/jcli/command/votes/mod.rs index c1ea81db06..64f6515a02 100644 --- a/src/jormungandr/testing/jormungandr-automation/src/jcli/command/votes/mod.rs +++ b/src/jormungandr/testing/jormungandr-automation/src/jcli/command/votes/mod.rs @@ -9,7 +9,7 @@ mod tally; pub use committee::CommitteeCommand; pub use crs::CrsCommand; -pub use election_public_key::ElectionPublicKeyCommand; + pub use tally::TallyCommand; #[derive(Debug)] diff --git a/src/jormungandr/testing/jormungandr-automation/src/jormungandr/configuration/mod.rs b/src/jormungandr/testing/jormungandr-automation/src/jormungandr/configuration/mod.rs index 882c603ed8..cc595fc36f 100644 --- a/src/jormungandr/testing/jormungandr-automation/src/jormungandr/configuration/mod.rs +++ b/src/jormungandr/testing/jormungandr-automation/src/jormungandr/configuration/mod.rs @@ -13,7 +13,6 @@ mod secret; pub use block0::Block0ConfigurationBuilder; pub use jormungandr_config::EitherHashOrBlock0; pub use node::{NodeConfigBuilder, NodeConfigManager}; -pub use secret::{NodeSecretExtension, SecretModelFactory}; lazy_static! { static ref NEXT_AVAILABLE_PORT_NUMBER: AtomicU16 = AtomicU16::new(10000);