Skip to content

Commit

Permalink
bumping up the yew version in Cargo.toml (#107) (#109)
Browse files Browse the repository at this point in the history
* bumping up the yew version in Cargo.toml (#107)

* bumping up the yew version for stdweb

* bumping up the yew version of ConsoleService link

* bumping up the yew version

* Update src/more/debugging.md

Co-authored-by: Justin Starry <justin.m.starry@gmail.com>
  • Loading branch information
hituzi-no-sippo and jstarry committed Jul 10, 2020
1 parent 2efa3d1 commit 840b0aa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/getting-started/choose-web-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ You'll need to choose one or the other when adding `yew` to your cargo dependenc
{% code title="Cargo.toml" %}
```rust
# Choose `web-sys`
yew = "0.15"
yew = "0.16"

# Choose `stdweb`
yew = { version = "0.15", package = "yew-stdweb" }
yew = { version = "0.16", package = "yew-stdweb" }
```
{% endcode %}

Expand Down Expand Up @@ -112,4 +112,4 @@ compiled crate it's best to use only one of the two.
</tr>
</thead>
<tbody></tbody>
</table>
</table>
2 changes: 1 addition & 1 deletion docs/getting-started/starter-templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ crate-type = ["cdylib"]
# for web_sys
yew = "0.16"
# or for stdweb
# yew = { version = "0.15", package = "yew-stdweb" }
# yew = { version = "0.16", package = "yew-stdweb" }
wasm-bindgen = "0.2"
```
{% endcode %}
Expand Down
3 changes: 1 addition & 2 deletions docs/more/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fn main() {
log::info!("Update: {:?}", msg);
```

### **\`\`**[**`ConsoleService`**](https://docs.rs/yew/0.15.0/yew/services/console/struct.ConsoleService.html)**\`\`**
### [`ConsoleService`](https://docs.rs/yew/latest/yew/services/console/struct.ConsoleService.html)

This service is included within yew and is available when the `"services"` feature is enabled:

Expand All @@ -51,4 +51,3 @@ change. If this is no longer true or if progress is made, please suggest a chang
\[2019\] [Rust Wasm roadmap](https://rustwasm.github.io/rfcs/007-2019-roadmap.html#debugging)

> Debugging is tricky because much of the story is out of this working group's hands, and depends on both the WebAssembly standardization bodies and the folks implementing browser developer tools instead.

0 comments on commit 840b0aa

Please sign in to comment.