6 个稳定版本
3.0.0 | 2024年2月4日 |
---|---|
2.1.0 | 2024年1月19日 |
2.0.0 | 2023年3月14日 |
1.0.2 | 2021年9月27日 |
1.0.1 | 2021年9月11日 |
#210 在 命令行界面 类别
452,816 每月下载量
在 142 个 crate(12 个直接使用) 中使用
8KB
检测终端是否支持 Unicode。
这个 crate 是将 @sindresorhus 的 is-unicode-supported
和 @iarna 的 has-unicode
NPM 包混合在一起的 Rust 端口。
示例
use supports_unicode::Stream;
if supports_unicode::on(Stream::Stdout) {
println!("stdout supports unicode output");
} else {
println!("no unicode, please");
}
MSRV
此 crate 需要 rustc 1.70.0 或更高版本。