Crates.io | target-spec |
lib.rs | target-spec |
version | 3.2.2 |
source | src |
created_at | 2020-03-21 00:50:19.057153 |
updated_at | 2024-09-11 19:15:51.588584 |
description | Evaluate Cargo.toml target specifications |
homepage | |
repository | https://github.com/guppy-rs/guppy |
max_upload_size | |
id | 220833 |
size | 106,027 |
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
.
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
.The minimum supported Rust version (MSRV) is:
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.
See the CONTRIBUTING file for how to help out.
This project is available under the terms of either the Apache 2.0 license or the MIT license.