Conventional commit parser
A rust implementation of the conventional commit specification.
Example
use parse;
use *;
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?;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
Licence
All the code in this repository is released under the MIT License, for more information take a look at the LICENSE file.