#build #target #env #utils

build build-target

A crate that provides programmatic access to information about the current build target

7 unstable releases (3 breaking)

0.4.0 Apr 29, 2022
0.3.1 Oct 14, 2021
0.2.1 Oct 14, 2021
0.2.0 Sep 6, 2021
0.1.1 Aug 1, 2021

#55 in Build Utils

Download history 13272/week @ 2022-11-29 12476/week @ 2022-12-06 13160/week @ 2022-12-13 11819/week @ 2022-12-20 11485/week @ 2022-12-27 13172/week @ 2023-01-03 16609/week @ 2023-01-10 16174/week @ 2023-01-17 16013/week @ 2023-01-24 17228/week @ 2023-01-31 19697/week @ 2023-02-07 21043/week @ 2023-02-14 16840/week @ 2023-02-21 17113/week @ 2023-02-28 15807/week @ 2023-03-07 11809/week @ 2023-03-14

63,368 downloads per month
Used in 13 crates (9 directly)

MIT license

21KB
398 lines

build-target

CI crates.io Documentation dependency status MIT

A crate that provides programmatic access to information about the current build target inside build.rs.

Examples

Prints all available information about the current build target.

// inside build.rs

fn main() {
    // The panic is just used to print the information to the console.
    panic!("current build target: {:#?}",
        build_target::target().unwrap()
    );
}

Gets the parts of the current build target individually.

// inside build.rs

fn main() {
    let arch   = build_target::target_arch().unwrap();   // eg. "x86_64", "aarch64", ...
    let env    = build_target::target_env().unwrap();    // eg. "gnu", "msvc", ...
    let family = build_target::target_family().unwrap(); // eg. "windows", "unix", ...
    let os     = build_target::target_os().unwrap();     // eg. "android", "linux", ...
    let triple = build_target::target_triple().unwrap(); // eg. "x86_64-unknown-linux-gnu", ...
}

Attribution

This crate is inspired by and partially based on platforms.

License

Licensed under MIT license (LICENSE or http://opensource.org/licenses/MIT)

No runtime deps