conventional::Commit
Add the crate to your Cargo.toml
:
```shell cargo install cargo-edit
cargo add conventional ```
Import the Commit
type and the Simple
trait to parse a commit string, and
query its different components as string slices:
```rust use conventional::{Commit, Simple as _};
let commit = Commit::new("feat(conventional commit): this is it!").unwrap();
asserteq!("feat", commit.type()); asserteq!("conventional commit", commit.scope()); asserteq!("this is it!", commit.description()); assert_eq!(None, commit.body()); ```
Upgrade to Typed
components for strongly typed access:
```rust use conventional::{Commit, Typed as _};
let commit = Commit::new("feat(conventional commit): this is it!").unwrap();
asserteq!(Type("feat"), commit.type()); ```
Check out tools like [Jilu] for an example of library usage.