#commit #emoji #git-commit #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

#89 in #emoji

Download history 1/week @ 2024-11-13 8/week @ 2024-11-20 10/week @ 2024-11-27 14/week @ 2024-12-04 16/week @ 2024-12-11 1/week @ 2024-12-18 1/week @ 2025-01-08 10/week @ 2025-02-05 50/week @ 2025-02-12 4/week @ 2025-02-19 4/week @ 2025-02-26

68 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