-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcargo.toml
44 lines (41 loc) · 998 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
38
39
40
41
42
43
44
[package]
name = "tree-drawing-challenge"
version = "0.1.0"
edition = "2021"
[dependencies]
futures = "0.3.31"
gloo = "0.11.0"
js-sys = "0.3.72"
log = "0.4.22"
serde-wasm-bindgen = "0.6.5"
serde_json = "1.0.133"
urlencoding = "2.1.3"
wasm-bindgen = "0.2.95"
wasm-bindgen-futures = "0.4.45"
yew = { version = "0.21.0", features = ["csr"] }
[dependencies.serde]
version = "1.0.215"
features = ["derive"]
[dependencies.web-sys]
version = "0.3.72"
features = ["console",
"EventTarget",
"Window",
"Performance",
"Navigator",
"DomRect",
"Element",
"SvgsvgElement",
"HtmlElement",
"TouchEvent",
"TouchList",
"Touch",
"CanvasRenderingContext2d",
"HtmlCanvasElement",
"ImageBitmap",
"HtmlImageElement",
"ShareData",
"MediaQueryList",
"TextMetrics",
"Clipboard"
]