rfast 1.0.0

Run Rust files like scripts — instant caching, inline dependencies, zero boilerplate
1
2
3
4
5
6
7
8
//# serde_json = "*"
//# anyhow = "1.0"

use serde_json::json;

fn main() {
    println!("{}", json!({"ok": true}));
}