diff --git a/crates/masking/src/boxed.rs b/crates/masking/src/boxed.rs index e162483add..67397ec3c0 100644 --- a/crates/masking/src/boxed.rs +++ b/crates/masking/src/boxed.rs @@ -3,8 +3,6 @@ //! //! There is not alias type by design. -use alloc::boxed::Box; - #[cfg(feature = "serde")] use super::{SerializableSecret, Serialize}; diff --git a/crates/masking/src/vec.rs b/crates/masking/src/vec.rs index ff05218247..1f8c1c671e 100644 --- a/crates/masking/src/vec.rs +++ b/crates/masking/src/vec.rs @@ -3,8 +3,6 @@ //! //! There is not alias type by design. -use alloc::vec::Vec; - #[cfg(feature = "serde")] use super::{SerializableSecret, Serialize}; diff --git a/crates/router_env/src/lib.rs b/crates/router_env/src/lib.rs index baa7efe187..3ecefb7a36 100644 --- a/crates/router_env/src/lib.rs +++ b/crates/router_env/src/lib.rs @@ -28,5 +28,6 @@ pub mod logger; pub use logger::*; pub use opentelemetry; pub use tracing; +#[cfg(feature = "actix_web")] pub use tracing_actix_web; pub use tracing_appender;