mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-28 20:21:35 +00:00
Bump to 0.2.12 (#515)
* Bump to 0.2.12 * Update all version numbers and deps * Update all listed authors to `["The wasm-bindgen Developers"]` * Update `repository` links to specific paths for each crate * Update `homepage` links to the online book * Update all links away from `alexcrichton/wasm-bindgen` * Add `#[doc]` directives for HTML URLs * Update more version requirements * Fill out CHANGELOG
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
[package]
|
||||
name = "wasm-bindgen-macro"
|
||||
version = "0.2.11"
|
||||
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
||||
version = "0.2.12"
|
||||
authors = ["The wasm-bindgen Developers"]
|
||||
license = "MIT/Apache-2.0"
|
||||
repository = "https://github.com/alexcrichton/wasm-bindgen"
|
||||
homepage = "https://github.com/alexcrichton/wasm-bindgen"
|
||||
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro"
|
||||
homepage = "https://rustwasm.github.io/wasm-bindgen/"
|
||||
documentation = "https://docs.rs/wasm-bindgen"
|
||||
description = """
|
||||
Definition of the `#[wasm_bindgen]` attribute, an internal dependency
|
||||
@ -21,5 +21,5 @@ xxx_debug_only_print_generated_code = []
|
||||
syn = { version = '0.14', features = ['full'] }
|
||||
quote = '0.6'
|
||||
proc-macro2 = "0.4.8"
|
||||
wasm-bindgen-backend = { path = "../backend", version = "=0.2.11" }
|
||||
wasm-bindgen-shared = { path = "../shared", version = "=0.2.11" }
|
||||
wasm-bindgen-backend = { path = "../backend", version = "=0.2.12" }
|
||||
wasm-bindgen-shared = { path = "../shared", version = "=0.2.12" }
|
||||
|
@ -1,3 +1,5 @@
|
||||
#![doc(html_root_url = "https://docs.rs/wasm-bindgen-macro/0.2")]
|
||||
|
||||
extern crate proc_macro;
|
||||
extern crate proc_macro2;
|
||||
extern crate quote;
|
||||
|
Reference in New Issue
Block a user