Remove outdated comment about path dependency. (#2129)

The path dependency was turned into a regular version dependency in PR #1015, so it doesn't need to be
called out as special anymore.
This commit also changes the phrasing in the preceding sentence.
This commit is contained in:
Markus Stange 2020-05-11 16:51:29 -04:00 committed by GitHub
parent 8e3d6fe619
commit 6b5f7342a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,9 +11,7 @@ function in Rust.
## `Cargo.toml` ## `Cargo.toml`
The `Cargo.toml` enables depends on the `wasm-bindgen` crate. Here we're using The `Cargo.toml` lists the `wasm-bindgen` crate as a dependency.
a `path` dependency because this example lives in the `wasm-bindgen` repository
itself, but you'd use the commented out version beneath it instead.
Also of note is the `crate-type = ["cdylib"]` which is largely used for wasm Also of note is the `crate-type = ["cdylib"]` which is largely used for wasm
final artifacts today. final artifacts today.