hvm-core 0.2.26

HVM-Core is a massively parallel Interaction Combinator evaluator.
1
2
3
4
5
6
7
8
use std::{env, process::Command};

fn main() {
  let rustc_version = Command::new(env::var("RUSTC").unwrap()).arg("--version").output().unwrap().stdout;
  let rustc_version = String::from_utf8(rustc_version).unwrap();

  println!("cargo::rustc-env=RUSTC_VERSION={rustc_version}");
}