Conventional commit parser

![Latest Version] Conventional Commits License

A rust implementation of the conventional commit specification.

Example

```rust use conventionalcommitparser::parse; use conventionalcommitparser::commit::*; let message = r#"fix: correct minor typos in code

see the issue for details

on typos fixed.

Reviewed-by: Z Refs #133"#;

let conventional_commit = parse(message)?;

asserteq!(conventionalcommit.committype, CommitType::BugFix); asserteq!(conventionalcommit.summary, "correct minor typos in code".tostring()); asserteq!(conventionalcommit.body, Some(r#"see the issue for details

on typos fixed."#.to_string()));

asserteq!(conventionalcommit.footers, vec![ Footer {token: "Reviewed-by".tostring(), content: "Z".tostring()}, Footer {token: "Refs".tostring(), content: "133".tostring(),} ]); ```

Licence

All the code in this repository is released under the MIT License, for more information take a look at the LICENSE file.