Skip to content
This repository was archived by the owner on Sep 24, 2025. It is now read-only.
Closed
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ uuid = "1.18.0"
walkdir = "2.5.0"

[workspace.lints.rust]
missing_docs = "warn"
#missing_docs = "warn"
nonstandard-style = "warn"
rust-2018-idioms = "warn"
rust-2021-compatibility = "warn"
Expand Down
3 changes: 3 additions & 0 deletions wdl-engine/src/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@ use crate::path::EvaluationPath;

mod docker;
mod local;
mod lsf_apptainer;
mod tes;

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

/// The default work directory name.
Expand Down Expand Up @@ -330,6 +332,7 @@ impl<Req> TaskManagerState<Req> {
}

/// Responsible for managing tasks based on available host resources.
#[derive(Debug)]
struct TaskManager<Req> {
/// The sender for new spawn requests.
tx: mpsc::UnboundedSender<(Req, oneshot::Sender<Result<TaskExecutionResult>>)>,
Expand Down
Loading
Loading