slurry 0.1.7

A crate for managing, analyzing, and creating SLURM jobs for HPC in Rust.
Documentation
1
2
3
4
5
6
7
/// Module for extracting data using the `squeue` command
pub mod squeue;

pub use squeue::{get_squeue_res, get_squeue_res_locally, squeue_diff, SqueueMode};

#[cfg(feature = "ssh")]
pub use squeue::get_squeue_res_ssh;