4个版本

0.1.3 2024年5月14日
0.1.2 2023年12月21日
0.1.1 2023年12月21日
0.1.0 2023年12月21日

#308构建工具

Download history • Rust 包仓库 509/week @ 2024-04-30 • Rust 包仓库 222/week @ 2024-05-07 • Rust 包仓库 607/week @ 2024-05-14 • Rust 包仓库 444/week @ 2024-05-21 • Rust 包仓库 673/week @ 2024-05-28 • Rust 包仓库 545/week @ 2024-06-04 • Rust 包仓库 584/week @ 2024-06-11 • Rust 包仓库 674/week @ 2024-06-18 • Rust 包仓库 937/week @ 2024-06-25 • Rust 包仓库 947/week @ 2024-07-02 • Rust 包仓库 678/week @ 2024-07-09 • Rust 包仓库 782/week @ 2024-07-16 • Rust 包仓库 898/week @ 2024-07-23 • Rust 包仓库 1480/week @ 2024-07-30 • Rust 包仓库 1115/week @ 2024-08-06 • Rust 包仓库 1054/week @ 2024-08-13 • Rust 包仓库

4,700 每月下载量
8 个crate中使用 (直接使用5个)

MIT/Apache

7KB
55

Rustc目标三重符

github crates.io docs.rs build status

访问Cargo提供的构建脚本中的$TARGET和$HOST rustc目标三重符

示例

fn main() {
    // As a const &str:
    assert_eq!(target_triple::TARGET, "x86_64-unknown-linux-gnu");

    // As a string literal:
    assert_eq!(
        concat!("target/", target_triple::target!()),
        "target/x86_64-unknown-linux-gnu",
    );
}

许可证

根据您的选择,在Apache License, Version 2.0MIT许可证下许可。
除非您明确说明,否则根据Apache-2.0许可证定义的,您有意提交以包含在此crate中的任何贡献,都将按照上述方式双重许可,不附加任何额外条款或条件。

无运行时依赖