Skip to content

Commit 7c340d9

Browse files
committed
feat: added feature: flow_validator
1 parent ea14944 commit 7c340d9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ default = ["all"]
2828
flow_definition = []
2929
flow_config = []
3030
flow_health = []
31-
all = ["flow_definition", "flow_config", "flow_health"]
31+
flow_validator = []
32+
all = ["flow_definition", "flow_config", "flow_health", "flow_validator"]

src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ pub mod flow_config;
66

77
#[cfg(feature = "flow_health")]
88
pub mod flow_health;
9+
10+
#[cfg(feature = "flow_validator")]
11+
mod flow_validator;

0 commit comments

Comments
 (0)