3 个版本
0.1.2 | 2023年2月6日 |
---|---|
0.1.1 | 2023年2月3日 |
0.1.0 | 2023年2月3日 |
#409 in 构建工具
7KB
54 行
go-tool-dist-list
用于获取 go 编译器支持的目标列表的库。
用法
将此内容添加到您的 Cargo.toml 中
[dependencies]
go-tool-dist-list = "0.1"
之后您可以这样使用它
fn main() {
let targets = go_tool_dist_list::from_cli().unwrap();
for (i,target) in targets.iter().unwrap().enumerate() {
println!("{i}. {target}");
}
}
运行示例
cargo run --example targets
许可证
在您的选择下,根据 Apache 许可证 2.0 版 或 MIT 许可证 许可。除非您明确声明,否则根据 Apache-2.0 许可证定义的,您有意提交以包含在此软件包中的任何贡献,将按照上述方式双重许可,没有任何附加条款或条件。