Rust goal: cargo script (like uv does for Python)rust-lang.github.io 1 pointIdiotSavage3 months ago1 commentSaveHideCopy link On HNComments−IdiotSavageOP3moAlready works with nightly:https://doc.rust-lang.org/nightly/cargo/reference/unstable.h... #!/usr/bin/env -S cargo +nightly -Zscript ---cargo [package] edition = "2024" [profile.dev] opt-level = 3 --- fn main() { println!("Hey, man!"); }
Comments
Already works with nightly:
https://doc.rust-lang.org/nightly/cargo/reference/unstable.h...