cargo-make 0.6.3

Rust task runner and build tool.
1
2
3
4
5
6
7
8
9
10
11
12
13
14

[tasks.rust]
rust_script = [
'''
//! ```cargo
//! [dependencies]
//! time = "*"
//! ```
extern crate time;
fn main() {
    println!("{}", time::now().rfc822z());
}
'''
]