godot-rust-cli 0.4.0

Provides an easy way to use Rust with your Godot project
1
2
3
4
5
6
7
/// Prints the user's default target tuple.
fn main() {
    println!(
        "cargo:rustc-env=TARGET={}",
        std::env::var("TARGET").unwrap()
    );
}