2 个版本
使用旧的 Rust 2015
0.1.1 | 2018 年 5 月 21 日 |
---|---|
0.1.0 | 2016 年 11 月 13 日 |
71 在 #emoji 中排名
27 每月下载次数
在 2 crate 中使用
10KB
180 行
Emoji Commit Type
用于 emoji committer 的不同提交类型的枚举。
用法
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());
}
}