Skip to content
This repository was archived by the owner on Sep 24, 2025. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "crankshaft"]
path = crankshaft
url = https://github.com/stjude-rust-labs/crankshaft.git
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ members = [
"wdl-lint",
"wdl-lsp",
]
exclude = [
"crankshaft",
]
resolver = "2"

[workspace.package]
Expand All @@ -33,7 +36,7 @@ clap-verbosity-flag = { version = "3.0.3", features = ["tracing"] }
codespan-reporting = "0.12.0"
colored = "3.0.0"
convert_case = "0.8.0"
crankshaft = "0.4.0"
crankshaft = { path = "./crankshaft/crankshaft" }
dirs = "6.0.0"
faster-hex = "0.10.0"
fs_extra = "1.3.0"
Expand Down
1 change: 1 addition & 0 deletions crankshaft
Submodule crankshaft added at ce9d63
2 changes: 2 additions & 0 deletions wdl-engine/src/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@ use crate::http::HttpDownloader;
use crate::path::EvaluationPath;

mod docker;
mod generic;
mod local;
mod tes;

pub use docker::*;
pub use generic::*;
pub use local::*;
pub use tes::*;

Expand Down
Loading
Loading