conventional-commits-parser 0.1.1

A parser for the conventional commits specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! A parser for the Conventional Commits specification v1.0.0.
//!
//! # Specification
//!
//! # License
//!
//! The project itself is licensed under the MIT or Apache-2.0 license. The
//! specification excerpts are licensed under the CC BY 3.0.

mod parser;

pub use conventional_commits_types::{Commit, Footer};
pub use parser::{parse_commit_msg, BREAKING_CHANGE_TOKEN, BREAKING_CHANGE_WITH_HYPHEN_TOKEN};