Skip to content

Commit

Permalink
fix: feature-gate the "experimental" parser.
Browse files Browse the repository at this point in the history
This commit adds an `experimental` feature to `wdl-grammar` that enables the
inclusion of the "experimental" parser.
  • Loading branch information
peterhuene committed May 13, 2024
1 parent b607597 commit 1828eb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions wdl-grammar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ binaries = [
"dep:tokio",
"dep:toml",
]
experimental = []

[[bin]]
name = "wdl-grammar"
Expand Down
1 change: 1 addition & 0 deletions wdl-grammar/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#![warn(clippy::missing_docs_in_private_items)]
#![warn(rustdoc::broken_intra_doc_links)]

#[cfg(feature = "experimental")]
pub mod experimental;
pub mod v1;

Expand Down

0 comments on commit 1828eb0

Please sign in to comment.