Move the unsize feature behind a nightly Cargo feature

This should fully stabilize the `wasm-bindgen` crate, preparing us for stable
Rust!
This commit is contained in:
Alex Crichton
2018-08-19 14:45:59 -07:00
parent 305ecb7910
commit 4c1bf937f2
6 changed files with 8 additions and 2 deletions

View File

@@ -7,5 +7,5 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
crate-type = ["cdylib"]
[dependencies]
wasm-bindgen = { path = "../.." }
wasm-bindgen = { path = "../..", features = ['nightly'] }
js-sys = { path = "../../crates/js-sys" }