cpm-rs
Single crate for Critical Path Method calculation.

Functionality
- File parser for predefined tasks. (May be removed later.)
- Critical path calculation.
- Calculation of number of maximum parallel tasks at a time.
Future functionality
- Time unit type templates. (integer / float / std::time)
- Dependency cycle check.
- Shiftable tasks.
- Graph visualization.
- Crate features.
Limitations
- Does not check cirecles in task dependencies.
- Does not utilize multiple utilize multiple threads for path calculations.
- Does not have a depth / performance limit on recursive path calculations.
Usage
```rust
fn main() {
let mut scheduler = scheduler::Scheduler::new();
let args: Vec = env::args().collect();
if args.len() < 2 {
eprintln!("Please provide an input file path!");
exit(1);
}
match inputparser::parseinputfile(&args[1]) {
Ok(tasklist) => { scheduler.schedule(task_list); },
Err(e) => {eprintln!("Error: {}", e); exit(1);},
}
}
```