5 个版本
0.1.9 | 2020年3月16日 |
---|---|
0.1.8 | 2020年2月11日 |
0.1.7 | 2019年12月10日 |
0.1.6 | 2019年11月27日 |
0.1.5 | 2019年6月24日 |
#727 in 图形API
每月 21 次下载
30KB
52 行
nerd-fonts.rs
Nerd Fonts in rust.
预安装
https://github.com/ryanoasis/nerd-fonts#font-installation
如何使用
在你的 Cargo.toml
中添加
[dependencies]
nerd_fonts = "0.1"
然后导入它
extern crate nerd_fonts;
使用 NerdFonts::load
来加载
use nerd_fonts::NerdFonts;
let nf = NerdFonts {
nf: NerdFonts::load(),
};
let nf_custom_c = nf.get("custom-c").unwrap(); // '\u{e61e}'
如何开发
git clone https://github.com/g1eny0ung/nerd-fonts.rs.git && cd nerd-fonts.rs
cd bin/nerd_fonts_css_to_yaml && ./generate-nerd-fonts-yaml.sh
cd ../..
cargo test
如何贡献
拉取请求或打开一个问题来描述你的更改或问题。
许可证
MIT @ g1eny0ung
依赖
~185KB