-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 936 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
authors = ["<[email protected]>"]
categories = ["wasm", "rust", "yew", "nim-game", "minimax"]
description = "A nim-game app built using yew.rs implementing the Minimax algorithm"
edition = "2021"
license = "GNU General Public License"
name = "yew-app"
readme = "./README.md"
repository = "https://github.com/DrShahinstein/yew-nim-game.git"
version = "0.1.0"
[dependencies]
log = "0.4"
serde = "1"
reqwest = { version = "0.11.13", features = ["json"] }
yew = { version = "0.20.0", features = ["csr"] }
yew-router = "0.17.0"
yew-hooks = "0.2.0"
gloo = "0.10.0"
wasm-bindgen = "0.2"
wasm-logger = "0.2.0"
getrandom = { version = "0.2", features = ["js"] }
rand = "0.8.5"
web-sys = "0.3.64"
stylist = { version = "0.12.1", features = ["yew", "parser"] }
[dev-dependencies]
wasm-bindgen-test = "0.3"
gloo-utils = "0.1.5"
[dev-dependencies.web-sys]
version = "0.3"
features = ["Document", "Element", "HtmlCollection"]