cpm-rs

Single crate for Critical Path Method calculation.

Functionality

Future functionality

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);}, } }

```