forked from yewstack/yew
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* follow changes in rand crate `wasm-bindgen` feature is not forwarded any more. See: rust-random/rand@0aa4617 * update index.html to new template See: https://yew.rs/docs/getting-started/build-a-sample-app * correct dimensions of playground tested with Firefox 77.0.1 * Update examples/game_of_life/src/lib.rs Co-authored-by: Teymour Aldridge <42674621+teymour-aldridge@users.noreply.github.com> Co-authored-by: Jens Getreu <getreu@saar1.lan> Co-authored-by: Teymour Aldridge <42674621+teymour-aldridge@users.noreply.github.com>
- Loading branch information
1 parent
e0aec40
commit 9965744
Showing
3 changed files
with
13 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
[package] | ||
name = "game_of_life" | ||
version = "0.1.3" | ||
version = "0.1.4" | ||
authors = ["Diego Cardoso <dige0card0s0@hotmail.com>", | ||
"Ilya Bogdanov <fumlead@gmail.com", | ||
"Junjie Huang <huangjj.27@qq.com>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
rand = "0.7.3" | ||
log = "0.4" | ||
log = "0.4.8" | ||
wasm-logger = "0.2.0" | ||
yew = { path = "../../yew" } | ||
rand = { version = "0.7.3", features = ["getrandom"] } | ||
getrandom = { version = "0.1.14", features = ["wasm-bindgen"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters