1个不稳定版本
0.1.0 | 2024年6月7日 |
---|
#358 in 操作系统
4KB
runtime-environment
一个在运行时检查操作系统的Rust库。
安装
在你的 Cargo.toml
文件中,在 [dependencies]
部分
runtime-environment = "0.1.0"
使用
这是一个示例用法
use runtime-environment::{is_mac_os, is_windows, is_linux};
fn main() {
if is_mac_os() {
println!("Running on macOS");
} else if is_windows() {
println!("Running on Windows");
} else if is_linux() {
println!("Running on Linux");
} else {
println!("Running on an unknown OS");
}
}
函数
is_mac_os() -> bool
如果操作系统是macOS,则返回true。
is_windows() -> bool
如果操作系统是Windows,则返回true。
is_linux() -> bool
如果操作系统是Linux,则返回true。
测试
要运行测试,请使用以下命令
cargo test
许可证
本项目遵循MIT许可证。
在发布时,将 "0.1.0"
替换为你的包的实际版本号。
此 README.md
文件提供了对库的清晰概述、安装说明、示例用法和有关可用函数的信息。
Gitpod
在无云开发运行时环境中,您可以直接开始编码。
请随意更新README.md或提出任何问题以增强项目