6 releases (breaking)

0.5.0 Nov 22, 2019
0.4.1 Aug 19, 2019
0.3.0 Aug 17, 2019
0.2.0 Aug 17, 2019
0.1.0 Aug 15, 2019

#2414 in Parser implementations

Download history 7/week @ 2024-01-29 3/week @ 2024-02-19 31/week @ 2024-02-26 7/week @ 2024-03-04 8/week @ 2024-03-11 7/week @ 2024-03-18

53 downloads per month
Used in jilu

MIT/Apache

37KB
775 lines

conventional::Commit

Latest Crate Version Library Documentation Discord Chat


A Rust parser library for the Conventional Commit spec.

Quick Start

  1. Add the crate to your Cargo.toml:

    cargo install cargo-edit
    
    cargo add conventional
    
  2. Import the Commit type and the Simple trait to parse a commit string, and query its different components as string slices:

    use conventional::{Commit, Simple as _};
    
    let commit = Commit::new("feat(conventional commit): this is it!").unwrap();
    
    assert_eq!("feat", commit.type_());
    assert_eq!("conventional commit", commit.scope());
    assert_eq!("this is it!", commit.description());
    assert_eq!(None, commit.body());
    
  3. Upgrade to Typed components for strongly typed access:

    use conventional::{Commit, Typed as _};
    
    let commit = Commit::new("feat(conventional commit): this is it!").unwrap();
    
    assert_eq!(Type("feat"), commit.type_());
    
  4. Check out tools like Jilu for an example of library usage.

Dependencies

~1MB
~18K SLoC