#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

#6 in #git-log

Download history 27/week @ 2023-01-19 17/week @ 2023-01-26 22/week @ 2023-02-02 8/week @ 2023-02-09 26/week @ 2023-02-16 17/week @ 2023-02-23 12/week @ 2023-03-02 17/week @ 2023-03-09 10/week @ 2023-03-16 14/week @ 2023-03-23 9/week @ 2023-03-30 22/week @ 2023-04-06 6/week @ 2023-04-13 6/week @ 2023-04-20 26/week @ 2023-04-27 16/week @ 2023-05-04

64 downloads per month
Used in 2 crates

MIT license

9KB
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