#run-command #build #command #run

macro build compile-time-run

run a command at compile time and capture the output

13 releases

0.2.12 Jul 7, 2021
0.2.11 Jul 16, 2020
0.2.8 Oct 17, 2019
0.2.6 Apr 15, 2019
0.1.0 Mar 24, 2019

#31 in #run-command

Download history 2214/week @ 2024-12-10 1803/week @ 2024-12-17 964/week @ 2024-12-24 1450/week @ 2024-12-31 2063/week @ 2025-01-07 2272/week @ 2025-01-14 2531/week @ 2025-01-21 2258/week @ 2025-01-28 5019/week @ 2025-02-04 2750/week @ 2025-02-11 2310/week @ 2025-02-18 4048/week @ 2025-02-25 2637/week @ 2025-03-04 2633/week @ 2025-03-11 2637/week @ 2025-03-18 1717/week @ 2025-03-25

10,358 downloads per month
Used in 2 crates

BSD-2-Clause

11KB
92 lines

Documentation crates.io Build Status

compile-time-run

This crate contains macros to run commands on the host system at compile time. It can be used in some situations to take over functionaility that would otherwise have to be done using a build script.

An example:

use compile_time_run::{run_command, run_command_str};
const VALUE_STR   : &'static str  = run_command_str!("echo", "Hello World!");
const VALUE_BYTES : &'static [u8] = run_command!("echo", "Hello World!");

Keep in mind that running arbitrary commands during your build phase can easily hurt portability.

Dependencies

~1.5MB
~38K SLoC