pub trait CommitParser: Send + Sync {
// Required method
fn parse(&self, commit: &Commit) -> Result<ConventionalCommit, ReleaseError>;
}Expand description
Parses raw commits into conventional commits.
pub trait CommitParser: Send + Sync {
// Required method
fn parse(&self, commit: &Commit) -> Result<ConventionalCommit, ReleaseError>;
}Parses raw commits into conventional commits.