29 releases (15 stable)

3.1.0 Feb 4, 2024
3.0.1 Jul 29, 2023
3.0.0 Jun 26, 2023
2.0.1 Jun 19, 2023
0.1.0 Mar 21, 2020

#276 in Parser implementations

Download history 65173/week @ 2024-03-14 61793/week @ 2024-03-21 69721/week @ 2024-03-28 64205/week @ 2024-04-04 67048/week @ 2024-04-11 70259/week @ 2024-04-18 64355/week @ 2024-04-25 58198/week @ 2024-05-02 66277/week @ 2024-05-09 63641/week @ 2024-05-16 50468/week @ 2024-05-23 54166/week @ 2024-05-30 57285/week @ 2024-06-06 57252/week @ 2024-06-13 58909/week @ 2024-06-20 49602/week @ 2024-06-27

232,979 downloads per month
Used in 60 crates (8 directly)

MIT/Apache

96KB
1.5K SLoC

target-spec

target-spec on crates.io Documentation (latest release) Documentation (main) Changelog License License

Evaluate Cargo.toml target specifications against platform triples.

Cargo supports platform-specific dependencies. These dependencies can be specified in one of two ways:

# 1. As Rust-like `#[cfg]` syntax.
[target.'cfg(all(unix, target_arch = "x86_64"))'.dependencies]
native = { path = "native/x86_64" }

# 2. Listing out the full target triple.
[target.x86_64-pc-windows-gnu.dependencies]
winhttp = "0.4.0"

target-spec provides the eval API which can be used to figure out whether such a dependency will be included on a particular platform.

use target_spec::eval;

// Evaluate Rust-like `#[cfg]` syntax.
let cfg_target = "cfg(all(unix, target_arch = \"x86_64\"))";
assert_eq!(eval(cfg_target, "x86_64-unknown-linux-gnu").unwrap(), Some(true));
assert_eq!(eval(cfg_target, "i686-unknown-linux-gnu").unwrap(), Some(false));
assert_eq!(eval(cfg_target, "x86_64-pc-windows-msvc").unwrap(), Some(false));

// Evaluate a full target-triple.
assert_eq!(eval("x86_64-unknown-linux-gnu", "x86_64-unknown-linux-gnu").unwrap(), Some(true));
assert_eq!(eval("x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc").unwrap(), Some(false));

For more advanced usage, see Platform and TargetSpec.

Optional features

  • custom: Adds support for custom targets via Platform::new_custom.
  • summaries: Adds the summaries module to enable serialization of Platform and TargetFeatures.
  • proptest1: Enables support for property-based testing of Platform and TargetFeatures using proptest.

Minimum supported Rust version

The minimum supported Rust version (MSRV) is:

  • For target-spec 3.0.x: Rust 1.66.
  • For target-spec 3.1.x: Rust 1.73.

Within the 3.x series, MSRV bumps will be accompanied by a minor version update.

To pretty-print target-spec errors, consider using the miette diagnostic library with target-spec-miette.

Contributing

See the CONTRIBUTING file for how to help out.

License

This project is available under the terms of either the Apache 2.0 license or the MIT license.

Dependencies

~0.3–1MB
~22K SLoC