-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (51 loc) · 1.11 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "Unisulma"
categories = ["wasm"]
description = "Assistência Téc. de TI"
license = "MIT"
readme = "./README.md"
version = "0.1.0"
authors = ["andre <[email protected]>"]
edition = "2018"
[dependencies]
log = "0.4.14"
futures = "0.3.12"
rand = { version = "*", features = ["small_rng", "wasm-bindgen"] }
serde = { version = "1.0.123", features = ["derive"] }
serde_json="1.0.61"
wasm-logger = "0.2"
yew = "0.17.4"
# yew-services = "*"
instant = { version = "0.1", features = ["wasm-bindgen"] }
yew-router = "0.14.0"
yewtil = "0.3.2"
enclose = "1.1.8"
wasm-bindgen = "0.2.70"
anyhow = "1.0.38"
console_error_panic_hook = { version = "0.1.6", optional = true }
js-sys = "0.3.47"
gloo = "0.2.1"
[dependencies.web-sys]
version = "0.3.4"
features = [
'Document',
'Element',
'HtmlElement',
'Node',
'Window',
"BinaryType",
"Blob",
"ErrorEvent",
"FileReader",
"MessageEvent",
"ProgressEvent",
"WebSocket",
"KeyboardEvent",
"HtmlVideoElement",
"HtmlMediaElement",
"CanvasRenderingContext2d",
"HtmlCanvasElement",
"HtmlButtonElement",
"HtmlParagraphElement",
"EventListener",
]