1 个不稳定版本
0.1.0 | 2023年2月3日 |
---|
#680 in 构建工具
7KB
rustc-targets
获取 rustc 支持的目标列表的库。
用法
将以下内容添加到您的 Cargo.toml 中
[dependencies]
rustc-targets = "0.1"
之后,您可以使用它如下
fn main() {
let targets = rustc_targets::from_cli().unwrap();
for (i,target) in targets.iter().unwrap().enumerate() {
println!("{i}. {target}");
}
}
运行示例
cargo run --example targets
许可证
根据您的选择,许可协议为 Apache License, Version 2.0 或 MIT 许可证。除非您明确声明,否则根据 Apache-2.0 许可证定义的任何有意提交以包含在此软件包中的贡献,均应以上述双重许可方式提供,不附加任何额外条款或条件。