Skip to content

Commit 30dbb68

Browse files
authored
chore: remove wdl-engine dependency from wdl. (#235)
1 parent 0bbdc09 commit 30dbb68

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

wdl/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ wdl-lint = { path = "../wdl-lint", version = "0.8.0", optional = true }
1818
wdl-analysis = { path = "../wdl-analysis", version = "0.5.0", optional = true }
1919
wdl-lsp = { path = "../wdl-lsp", version = "0.5.0", optional = true }
2020
wdl-format = { path = "../wdl-format", version = "0.3.0", optional = true }
21-
wdl-engine = { path = "../wdl-engine", version = "0.0.0", optional = true }
21+
# TODO: uncomment this when `wdl-engine` is ready for release
22+
#wdl-engine = { path = "../wdl-engine", version = "0.0.0", optional = true }
2223
tracing-subscriber = { workspace = true, optional = true }
2324
clap = { workspace = true, optional = true }
2425
anyhow = { workspace = true, optional = true }
@@ -36,14 +37,15 @@ anyhow = { workspace = true }
3637
codespan-reporting = { workspace = true }
3738

3839
[features]
39-
default = ["ast", "grammar", "lint", "format", "engine"]
40+
default = ["ast", "grammar", "lint", "format"]
4041
analysis = ["dep:wdl-analysis"]
4142
ast = ["dep:wdl-ast"]
4243
format = ["dep:wdl-format"]
4344
grammar = ["dep:wdl-grammar"]
4445
lint = ["dep:wdl-lint"]
4546
lsp = ["dep:wdl-lsp"]
46-
engine = ["dep:wdl-engine"]
47+
# TOOD: uncomment this when `wdl-engine` is ready for release.
48+
#engine = ["dep:wdl-engine"]
4749
codespan = ["ast", "wdl-ast/codespan", "dep:codespan-reporting"]
4850
cli = [
4951
"analysis",

wdl/src/lib.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,10 @@ pub use wdl_analysis as analysis;
7878
#[cfg(feature = "ast")]
7979
#[doc(inline)]
8080
pub use wdl_ast as ast;
81-
#[cfg(feature = "engine")]
82-
#[doc(inline)]
83-
pub use wdl_engine as engine;
81+
// TODO: uncomment this when wdl-engine is ready for release.
82+
// #[cfg(feature = "engine")]
83+
// #[doc(inline)]
84+
// pub use wdl_engine as engine;
8485
#[cfg(feature = "format")]
8586
#[doc(inline)]
8687
pub use wdl_format as format;

0 commit comments

Comments
 (0)