denim 0.2.0

Denim is an alternative way to make and run Rust "scripts" with focus on minimal runtime overhead and ease of script development.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env -S denim
/* Cargo.toml
[package]
name = "{name}"
version = "0.1.0"
authors = ["Anonymous"]
edition = "2021"

[dependencies]
*/

/// Example script description
fn main() {{
    println!("Hello world!");
}}

// vim: ft=rust