From 3b2448cce17af5cd0d40365df93ecfb0647a9445 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 26 Sep 2018 08:10:18 -0700 Subject: [PATCH] Update web-sys docs now that it's published --- guide/src/web-sys/using-web-sys.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/guide/src/web-sys/using-web-sys.md b/guide/src/web-sys/using-web-sys.md index 48bf5f03b..a9e50023a 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 = [ ] ```