@@ -18,7 +18,8 @@ wdl-lint = { path = "../wdl-lint", version = "0.8.0", optional = true }
18
18
wdl-analysis = { path = " ../wdl-analysis" , version = " 0.5.0" , optional = true }
19
19
wdl-lsp = { path = " ../wdl-lsp" , version = " 0.5.0" , optional = true }
20
20
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 }
22
23
tracing-subscriber = { workspace = true , optional = true }
23
24
clap = { workspace = true , optional = true }
24
25
anyhow = { workspace = true , optional = true }
@@ -36,14 +37,15 @@ anyhow = { workspace = true }
36
37
codespan-reporting = { workspace = true }
37
38
38
39
[features ]
39
- default = [" ast" , " grammar" , " lint" , " format" , " engine " ]
40
+ default = [" ast" , " grammar" , " lint" , " format" ]
40
41
analysis = [" dep:wdl-analysis" ]
41
42
ast = [" dep:wdl-ast" ]
42
43
format = [" dep:wdl-format" ]
43
44
grammar = [" dep:wdl-grammar" ]
44
45
lint = [" dep:wdl-lint" ]
45
46
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"]
47
49
codespan = [" ast" , " wdl-ast/codespan" , " dep:codespan-reporting" ]
48
50
cli = [
49
51
" analysis" ,
0 commit comments