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 commit = parse(message).unwrap();

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

on typos fixed."#));

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

Licence

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