Skip to content

Commit

Permalink
add missing feature gate on ConfigExt for no-features build (#1549)
Browse files Browse the repository at this point in the history
Signed-off-by: Ho Kim <ho.kim@ulagbulag.io>
  • Loading branch information
HoKim98 authored Jul 23, 2024
1 parent 5b3b73d commit 7b48aba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kube/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,9 @@ pub mod prelude {
//!
//! The prelude may grow over time as additional items see ubiquitous use.

#[allow(unreachable_pub)] pub use crate::client::ConfigExt as _;
#[cfg(feature = "client")]
#[allow(unreachable_pub)]
pub use crate::client::ConfigExt as _;

#[cfg(feature = "unstable-client")] pub use crate::client::scope::NamespacedRef;

Expand Down

0 comments on commit 7b48aba

Please sign in to comment.