4 releases

0.2.1 Sep 1, 2021
0.2.0 Aug 31, 2021
0.1.1 Dec 16, 2019
0.1.0 Dec 15, 2019

#61 in Build Utils

Download history 8436/week @ 2024-10-05 8580/week @ 2024-10-12 7929/week @ 2024-10-19 6120/week @ 2024-10-26 7743/week @ 2024-11-02 7376/week @ 2024-11-09 7305/week @ 2024-11-16 7472/week @ 2024-11-23 7598/week @ 2024-11-30 6351/week @ 2024-12-07 6462/week @ 2024-12-14 3724/week @ 2024-12-21 3419/week @ 2024-12-28 7172/week @ 2025-01-04 7730/week @ 2025-01-11 6095/week @ 2025-01-18

24,885 downloads per month
Used in 83 crates (34 directly)

MIT/Apache

47KB
824 lines

Cargo Emit

Crates.io Downloads Build Status rustc ^1.31.0
Become a Patron! Buy me a coffee

Talk to Cargo easily at build time, brought to you by Nikolai Vazquez.

This library provides:

  • Convenience macros for communicating with Cargo during the build.rs phrase. Cargo listens to certain build script outputs that dictate how it should behave.

  • An accessible location for seeing what script build outputs are available to emit.

  • Protection against typos that can be made when printing these formatted outputs directly yourself. Mistyping macro names will result in a compile failure.

Usage

This crate exposes the following macros:

Macro Output
pair!($key, $value) cargo:$key=$value
rerun_if_changed!($path) cargo:rerun-if-changed=$path
rerun_if_env_changed!($key) cargo:rerun-if-env-changed=$key
rustc_cdylib_link_arg!($flag) cargo:rustc-cdylib-link-arg=$flag
rustc_cfg!($feature) cargo:rustc-cfg=$feature
rustc_env!($key, $value) cargo:rustc-env=$key=$value
rustc_flags!($flags) cargo:rustc-flags=$flags
rustc_link_arg!($arg) cargo:rustc-link-arg=$arg
rustc_link_arg_bin!($bin => $arg) cargo:rustc-link-arg-bin=$bin=$arg
rustc_link_arg_bins!($arg) cargo:rustc-link-arg-bins=$arg
rustc_link_lib!($name => $kind) cargo:rustc-link-lib=$kind=$name
rustc_link_search!($path => $kind) cargo:rustc-link-search=$kind=$path
warning!($message) cargo:warning=$message

License

This project is released under either:

No runtime deps