emoji-commit-type 0.1.1

The different commit types used in the emoji committer
Documentation
  • Coverage
  • 52.17%
    12 out of 23 items documented0 out of 12 items with examples
  • Size
  • Source code size: 8.96 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.71 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • LinusU

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