Files
wrkflw/crates/runtime
bahdotsh f49ccd70d9 fix(runtime): remove unnecessary borrow in Windows taskkill command
- Fix clippy needless_borrows_for_generic_args warning
- Change &pid.to_string() to pid.to_string() for taskkill /PID argument
- Ensure clippy passes with -D warnings on Windows builds
2025-08-27 15:45:58 +05:30
..

wrkflw-runtime

Runtime abstractions for executing steps in containers or emulation.

  • Container management primitives used by the executor
  • Emulation mode helpers (run on host without containers)

Example

// This crate is primarily consumed by `wrkflw-executor`.
// Prefer using the executor API instead of calling runtime directly.