target-spec
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.
[]
= { = "native/x86_64" }
# 2. Listing out the full target triple.
[]
= "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 eval;
// Evaluate Rust-like `#[cfg]` syntax.
let cfg_target = "cfg(all(unix, target_arch = \"x86_64\"))";
assert_eq!;
assert_eq!;
assert_eq!;
// Evaluate a full target-triple.
assert_eq!;
assert_eq!;
For more advanced usage, see Platform and TargetSpec.
Optional features
custom: Adds support for custom targets viaPlatform::new_custom.summaries: Adds thesummariesmodule to enable serialization ofPlatformandTargetFeatures.proptest1: Enables support for property-based testing ofPlatformandTargetFeaturesusingproptest.
Minimum supported Rust version
The minimum supported Rust version (MSRV) is Rust 1.82. The MSRV history is:
- For target-spec 3.0.x: Rust 1.66.
- For target-spec 3.1.x: Rust 1.73.
- For target-spec 3.2.x: Rust 1.75.
- For target-spec 3.3.x and 3.4.x: Rust 1.82.
- For target-spec 3.5.x: Rust 1.86.
Within the 3.x series, MSRV bumps will be accompanied by a minor version update. The last 6 months of stable Rust releases will be supported.
Related crates
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.