cargo-script-mvs 0.2.0

Proposed cargo command for treat .rs files as full packages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env rust-script
/// This is a regular crate doc comment, but it also contains a partial
/// Cargo manifest.  Note the use of a *fenced* code block, and the
/// `cargo` "language".
///
/// ```cargo
/// [dependencies]
/// time = "0.1.25"
/// ```

use time::now;

println!("{}", now().rfc822z());