From 5ab54a40941b1e3e530e5b88fe2ebe4be62d040f Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Tue, 14 Aug 2018 10:02:30 +0200 Subject: [PATCH] Remove warning, was fixed with the 0.2.16 release --- crates/test/README.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/crates/test/README.md b/crates/test/README.md index 5845ce6a..4ce08be6 100644 --- a/crates/test/README.md +++ b/crates/test/README.md @@ -34,19 +34,6 @@ ton of documentation just yet, but a taste of how it works is: wasm-bindgen-test = { git = 'https://github.com/rustwasm/wasm-bindgen' } ``` - **WARNING**: the `console_error_panic_hook` has a dependency on `wasm-bindgen` - from `crates.io` which conflicts with the one from git used by `wasm-bindgen-test`: - it produces linker errors due to duplicated symbols. - - Until `wasm-bindgen-test` is released on `crates.io`, the temporary workaround - is to patch the `crates.io`'s `wasm-bindgen` dependency to be the same that - `wasm-bindgen-test` uses by adding the following to your project's `Cargo.toml`: - - ```toml - [patch.crates-io] - wasm-bindgen = { git = 'https://github.com/rustwasm/wasm-bindgen' } - ``` - * Next, write some tests! ```rust