mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-29 20:51:37 +00:00
Prep work for the 0.1 release
This commit is contained in:
@ -1,7 +1,15 @@
|
||||
[package]
|
||||
name = "wasm-bindgen-shared"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
||||
license = "MIT/Apache-2.0"
|
||||
repository = "https://github.com/alexcrichton/wasm-bindgen"
|
||||
homepage = "https://github.com/alexcrichton/wasm-bindgen"
|
||||
documentation = "https://docs.rs/wasm-bindgen"
|
||||
description = """
|
||||
Shared support between wasm-bindgen and wasm-bindgen cli, an internal
|
||||
dependency.
|
||||
"""
|
||||
|
||||
[dependencies]
|
||||
serde_derive = "1"
|
||||
|
1
crates/wasm-bindgen-shared/LICENSE-APACHE
Symbolic link
1
crates/wasm-bindgen-shared/LICENSE-APACHE
Symbolic link
@ -0,0 +1 @@
|
||||
../../LICENSE-APACHE
|
1
crates/wasm-bindgen-shared/LICENSE-MIT
Symbolic link
1
crates/wasm-bindgen-shared/LICENSE-MIT
Symbolic link
@ -0,0 +1 @@
|
||||
../../LICENSE-MIT
|
@ -9,6 +9,8 @@ fn main() {
|
||||
.map(|s| s.stdout)
|
||||
.and_then(|s| String::from_utf8(s).ok());
|
||||
if let Some(rev) = rev {
|
||||
println!("cargo:rustc-env=WBG_VERSION={}", &rev[..9]);
|
||||
if rev.len() >= 9 {
|
||||
println!("cargo:rustc-env=WBG_VERSION={}", &rev[..9]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user