Crates.io | conventional-commits-parser |
lib.rs | conventional-commits-parser |
version | 0.1.1 |
source | src |
created_at | 2020-07-25 10:30:18.24983 |
updated_at | 2020-08-15 23:42:56.203644 |
description | A parser for the conventional commits specification |
homepage | https://github.com/conventional-commits-rs/conventional-commits-parser |
repository | https://github.com/conventional-commits-rs/conventional-commits-parser |
max_upload_size | |
id | 269452 |
size | 42,881 |
A library for parsing conventional commits.
use conventional_commits_parser::parse_commit_msg;
fn main() {
let msg = "feat(parser)!: remove parsing capabilities";
let commit = parse_commit_msg(msg).expect("failed to parse commit message");
println!("{:#?}", commit);
}
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.