conventional_commits_parser/
lib.rs

1//! A parser for the Conventional Commits specification v1.0.0.
2//!
3//! # Specification
4//!
5//! # License
6//!
7//! The project itself is licensed under the MIT or Apache-2.0 license. The
8//! specification excerpts are licensed under the CC BY 3.0.
9
10mod parser;
11
12pub use conventional_commits_types::{Commit, Footer};
13pub use parser::{parse_commit_msg, BREAKING_CHANGE_TOKEN, BREAKING_CHANGE_WITH_HYPHEN_TOKEN};