command-macros 0.2.9

Macros for creating std::process::Command with shell-like syntax
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(feature = "nightly", feature(proc_macro_hygiene))]

#[cfg(feature = "nightly")] extern crate command_macros;

#[cfg(feature = "nightly")]
mod tests {
    #[test]
    fn reexport_via_use() {
        use command_macros::command;
        let _ = command!(foo --bar);
    }
}