| Crates.io | emoji-commit-type |
| lib.rs | emoji-commit-type |
| version | 0.1.1 |
| created_at | 2016-11-13 18:49:54.920438+00 |
| updated_at | 2018-05-21 10:58:53.448325+00 |
| description | The different commit types used in the emoji committer |
| homepage | https://github.com/LinusU/rust-emoji-commit-type |
| repository | https://github.com/LinusU/rust-emoji-commit-type |
| max_upload_size | |
| id | 7240 |
| size | 9,326 |
An enum for the different commit types the emoji committer uses.
extern crate emoji_commit_type;
use emoji_commit_type::CommitType;
fn main() {
println!("The emoji commit types are:");
for commit_type in CommitType::iter_variants() {
println!("{} - {}", commit_type.emoji(), commit_type.description());
}
}