Skip to content

Commit a8864f9

Browse files
committed
Code review changes...
1 parent 0f9d26f commit a8864f9

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

gateway-api/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,5 @@ uuid.workspace = true
3939
features = [ "k8s-openapi/v1_32" ]
4040

4141
[features]
42-
default = ["standard"]
43-
standard = []
42+
default = []
4443
experimental = []

gateway-api/src/lib.rs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
pub mod duration;
22
pub use duration::Duration;
3+
pub mod standard;
4+
pub use standard::*;
35

46
cfg_if::cfg_if! {
5-
if #[cfg(feature="standard")] {
6-
pub mod standard;
7-
pub use standard::*;
8-
} else if #[cfg(feature = "experimental")] {
7+
if #[cfg(feature = "experimental")] {
98
pub mod experimental;
10-
pub use experimental::*;
119
} else {
1210

1311
}

0 commit comments

Comments
 (0)