wasmtime-cache 27.0.0

Support for automatic module caching with Wasmtime
Documentation
1
2
3
4
5
6
7
8
9
10
use std::process::Command;
use std::str;

fn main() {
    let git_rev = match Command::new("git").args(["rev-parse", "HEAD"]).output() {
        Ok(output) => str::from_utf8(&output.stdout).unwrap().trim().to_string(),
        Err(_) => env!("CARGO_PKG_VERSION").to_string(),
    };
    println!("cargo:rustc-env=GIT_REV={git_rev}");
}