Merge branch 'master' into fix/1032

This commit is contained in:
Max Brunsfeld 2021-06-29 15:59:15 -07:00 committed by GitHub
commit af0ed73f76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 323 additions and 267 deletions

View file

@ -13,7 +13,13 @@ fn main() {
let rust_binding_version = read_rust_binding_version();
println!(
"cargo:rustc-env={}={}",
"RUST_BINDING_VERSION", rust_binding_version
"RUST_BINDING_VERSION", rust_binding_version,
);
let emscripten_version = fs::read_to_string("../emscripten-version").unwrap();
println!(
"cargo:rustc-env={}={}",
"EMSCRIPTEN_VERSION", emscripten_version,
);
}