1 unstable release
0.1.4 | Nov 6, 2023 |
---|---|
0.1.3 |
|
0.1.2 |
|
#978 in Procedural macros
67 downloads per month
4KB
cmd-proc-macro
This crate contains only 1 proc-macro cmd_execute
that can execute shell commands and yield an expression of type &'static [u8; N]
which is the output of the commands
Usage
src/main.rs:
let cargo = cmd_execute!("cat Cargo.toml");
let bytes = include_bytes!("../Cargo.toml");
assert_eq!(cargo, bytes);
Dependencies
~250–700KB
~17K SLoC