-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 844 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
34
35
36
37
[package]
authors = ["Orlando Vargas [email protected]"]
categories = ["WASM"]
description = "portfolio"
edition = "2021"
license = "Apache-2.0/MIT"
name = "yew-app"
readme = "./README.md"
repository = "https://github.com/Nojipiz/Nojipiz.github.io"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
log = "0.4.17"
yew = "0.19.3"
yew-router = "0.16.0"
yewdux = "0.8.2"
yew-hooks = "0.1.56"
serde = "1.0.145"
wasm-bindgen = "0.2.83"
wasm-bindgen-futures = "0.4.33"
wasm-logger = "0.2.0"
web-sys = { version = "0.3.60", features = [
"Window",
"Document",
"DocumentFragment",
"NodeList",
"HtmlElement",
"FormData",
"HtmlFormElement",
] }
js-sys = "0.3.60"
reqwest = { version = "0.11.12", features = ["json"] }