cargotomlvalidate

This is a crate which helps to validate if all mandatory fields in a Cargo.toml file are present.

Usage

```rust

let cargo_toml = "...";

match cargotomlvalidate::validate(cargo_toml) { Ok(()) => { /* Everything's fine */ }, Err(errors) => { for error in errors { println!("{:?}", error); } } }

```

It validates the following fields:

License

MIT