code>conventional::Commit
A Rust parser library for the Conventional Commit spec.
Cargo.toml
:console
$ cargo add git_conventional
```rust let commit = git_conventional::Commit::parse("feat(conventional commit): this is it!").unwrap();
asserteq!(commit.type(), gitconventional::Type::FEAT); asserteq!(commit.scope().unwrap(), "conventional commit"); asserteq!(commit.description(), "this is it!"); asserteq!(commit.body(), None); ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.