diff --git a/guide/src/web-sys/using-web-sys.md b/guide/src/web-sys/using-web-sys.md index 48bf5f03..a9e50023 100644 --- a/guide/src/web-sys/using-web-sys.md +++ b/guide/src/web-sys/using-web-sys.md @@ -2,15 +2,12 @@ ## Add `web-sys` as a dependency to your `Cargo.toml` -***Note:** `web-sys` is not available on crates.io yet, so you'll need to depend -on the git version of it, and of `wasm-bindgen`:* - ```toml [dependencies] -wasm-bindgen = { git = "https://github.com/rustwasm/wasm-bindgen" } +wasm-bindgen = "0.2" [dependencies.web-sys] -git = "https://github.com/rustwasm/wasm-bindgen" +version = "0.3" features = [ ] ```