diff --git a/codegen/src/types/mod.rs b/codegen/src/types/mod.rs index 338da6109d9..2052ac2e762 100644 --- a/codegen/src/types/mod.rs +++ b/codegen/src/types/mod.rs @@ -21,7 +21,7 @@ use crate::error::CodegenError; pub use self::{ composite_def::{CompositeDef, CompositeDefFieldType, CompositeDefFields}, derives::{Derives, DerivesRegistry}, - substitutes::{AbsolutePath, TypeSubstitutes}, + substitutes::TypeSubstitutes, type_def::TypeDefGen, type_def_params::TypeDefParameters, type_path::{TypeParameter, TypePath, TypePathType}, diff --git a/lightclient/src/platform/mod.rs b/lightclient/src/platform/mod.rs index bfba17c029f..7a1182da66e 100644 --- a/lightclient/src/platform/mod.rs +++ b/lightclient/src/platform/mod.rs @@ -11,7 +11,7 @@ mod wasm_platform; #[cfg(feature = "web")] mod wasm_socket; -pub use helpers::{build_platform, PlatformType}; +pub use helpers::build_platform; #[cfg(feature = "native")] mod helpers { diff --git a/subxt/src/backend/rpc/rpc_client.rs b/subxt/src/backend/rpc/rpc_client.rs index 7f6d978340a..8f56e93746c 100644 --- a/subxt/src/backend/rpc/rpc_client.rs +++ b/subxt/src/backend/rpc/rpc_client.rs @@ -231,10 +231,7 @@ impl Stream for RpcSubscription { mod jsonrpsee_helpers { pub use jsonrpsee::{ client_transport::ws::{Receiver, Sender, Url, WsTransportClientBuilder}, - core::{ - client::{Client, ClientBuilder}, - Error, - }, + core::{client::Client, Error}, }; /// Build WS RPC client from URL diff --git a/testing/test-runtime/build.rs b/testing/test-runtime/build.rs index 23643e491d5..9a6ae962b6e 100644 --- a/testing/test-runtime/build.rs +++ b/testing/test-runtime/build.rs @@ -103,10 +103,7 @@ async fn run() { mod client { pub use jsonrpsee::{ client_transport::ws::{Receiver, Sender, Url, WsTransportClientBuilder}, - core::{ - client::{Client, ClientBuilder}, - Error, - }, + core::{client::Client, Error}, }; pub use jsonrpsee::core::{client::ClientT, rpc_params};