Fix dependencies sections for web-sys in guide

Closes #829
This commit is contained in:
Alex Crichton
2018-09-14 14:05:04 -07:00
parent 05a0a5c6a1
commit 87176b15bc

View File

@ -8,11 +8,11 @@ on the git version of it, and of `wasm-bindgen`:*
```toml ```toml
[dependencies] [dependencies]
wasm-bindgen = { git = "https://github.com/rustwasm/wasm-bindgen" } wasm-bindgen = { git = "https://github.com/rustwasm/wasm-bindgen" }
web-sys = {
git = "https://github.com/rustwasm/wasm-bindgen", [dependencies.web-sys]
features = [ git = "https://github.com/rustwasm/wasm-bindgen"
] features = [
} ]
``` ```
## Enable the cargo features for the APIs you're using ## Enable the cargo features for the APIs you're using
@ -30,12 +30,11 @@ documentation][search-resize-to]. We would find [the
in `Cargo.toml`: in `Cargo.toml`:
```toml ```toml
web-sys = { [dependencies.web-sys]
git = "https://github.com/rustwasm/wasm-bindgen", git = "https://github.com/rustwasm/wasm-bindgen"
features = [ features = [
"Window", "Window"
] ]
}
``` ```
## Call the method! ## Call the method!