#commit #emoji #git #log #committer

emoji-commit-type

The different commit types used in the emoji committer

2 releases

Uses old Rust 2015

0.1.1 May 21, 2018
0.1.0 Nov 13, 2016

#75 in #emoji

Download history 23/week @ 2024-02-18 24/week @ 2024-02-25 9/week @ 2024-03-03 31/week @ 2024-03-10 11/week @ 2024-03-17

78 downloads per month
Used in 2 crates

MIT license

10KB
180 lines

Emoji Commit Type

An enum for the different commit types the emoji committer uses.

Usage

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());
    }
}

No runtime deps