pub struct Product {
pub path: Option<String>,
pub name: Option<String>,
pub test: bool,
pub doctest: bool,
pub bench: bool,
pub doc: bool,
pub plugin: bool,
pub proc_macro: bool,
pub harness: bool,
pub edition: Edition,
pub crate_type: Vec<String>,
pub required_features: Vec<String>,
}
Expand description
Cargo uses the term “target” for both “target platform” and “build target” (the thing to build), which makes it ambigous. Here Cargo’s bin/lib target is renamed to product.
Fields§
§path: Option<String>
This field points at where the crate is located, relative to the Cargo.toml
.
name: Option<String>
The name of a product is the name of the library or binary that will be generated.
This is defaulted to the name of the package, with any dashes replaced
with underscores. (Rust extern crate
declarations reference this name;
therefore the value must be a valid Rust identifier to be usable.)
test: bool
A flag for enabling unit tests for this product. This is used by cargo test
.
doctest: bool
A flag for enabling documentation tests for this product. This is only relevant
for libraries, it has no effect on other sections. This is used by
cargo test
.
bench: bool
A flag for enabling benchmarks for this product. This is used by cargo bench
.
doc: bool
A flag for enabling documentation of this product. This is used by cargo doc
.
plugin: bool
If the product is meant to be a compiler plugin, this field must be set to true for Cargo to correctly compile it and make it available for all dependencies.
proc_macro: bool
If the product is meant to be a “macros 1.1” procedural macro, this field must be set to true.
harness: bool
If set to false, cargo test
will omit the --test
flag to rustc, which
stops it from generating a test harness. This is useful when the binary being
built manages the test runner itself.
edition: Edition
If set then a product can be configured to use a different edition than the
[package]
is configured to use, perhaps only compiling a library with the
2018 edition or only compiling one unit test with the 2015 edition. By default
all products are compiled with the edition specified in [package]
.
crate_type: Vec<String>
The available options are “dylib”, “rlib”, “staticlib”, “cdylib”, and “proc-macro”.
required_features: Vec<String>
The required-features
field specifies which features the product needs in order to be built.
If any of the required features are not selected, the product will be skipped.
This is only relevant for the [[bin]]
, [[bench]]
, [[test]]
, and [[example]]
sections,
it has no effect on [lib]
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Product
impl<'de> Deserialize<'de> for Product
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Eq for Product
impl StructuralPartialEq for Product
Auto Trait Implementations§
impl Freeze for Product
impl RefUnwindSafe for Product
impl Send for Product
impl Sync for Product
impl Unpin for Product
impl UnwindSafe for Product
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.