22 个版本
0.3.0 | 2023 年 9 月 15 日 |
---|---|
0.2.6 | 2023 年 4 月 3 日 |
0.2.5 | 2023 年 2 月 14 日 |
0.2.3 | 2022 年 11 月 29 日 |
0.1.1 | 2015 年 8 月 27 日 |
#29 在 命令行界面
1,966,656 每月下载量
用于 2,046 个 Crates (240 直接)
11KB
158 行
terminal-size
Rust 库,用于获取终端大小。
适用于 Linux、MacOS、Windows 和 illumos。
use terminal_size::{Width, Height, terminal_size};
let size = terminal_size();
if let Some((Width(w), Height(h))) = size {
println!("Your terminal is {} cols wide and {} lines tall", w, h);
} else {
println!("Unable to get terminal size");
}
最低 Rust 版本
此 crate 需要 1.63.0 或更高版本(2022-08-11)的 Rust 版本
许可证
根据以下任一许可证授权:
- Apache 许可证 2.0 版,(LICENSE-APACHE 或 https://www.apache.org/licenses/LICENSE-2.0)
- MIT 许可证 (LICENSE-MIT 或 https://opensource.org/licenses/MIT)
任选其一。
贡献
除非您明确声明,否则您有意提交给作品并包含在 Apache-2.0 许可证定义中的任何贡献,都应按照上述方式双许可,不附加任何额外的条款或条件。
依赖关系
~1–14MB
~150K SLoC