-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
86 lines (83 loc) · 1.51 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "yew-websocket"
version = "1.21.0"
edition = "2021"
license = "MIT"
description = "Rust yew websocket service written with love :)"
repository = "https://github.com/security-union/yew-websocket.git"
[dev-dependencies]
bincode = "1"
rmp-serde = "1"
[dependencies]
yew = "0.21.0"
gloo-net = "0.2"
gloo-console = "0.2"
wasm-bindgen-futures = "0.4"
wasm-bindgen = "0.2"
futures = "0.3"
gloo = { version = "0.8", optional = false }
js-sys = { version = "0.3", optional = false }
thiserror = "1"
anyhow = "1"
serde = "1"
serde_derive = "1"
serde_json = "1"
[dependencies.web-sys]
version = "0.3"
optional = false
features = [
"AbortController",
"AbortSignal",
"AnimationEvent",
"BinaryType",
"Blob",
"BlobPropertyBag",
"console",
"DedicatedWorkerGlobalScope",
"Document",
"DomTokenList",
"DragEvent",
"Element",
"ErrorEvent",
"Event",
"EventTarget",
"File",
"FileList",
"FileReader",
"FocusEvent",
"Headers",
"HtmlElement",
"HtmlButtonElement",
"HtmlInputElement",
"HtmlSelectElement",
"HtmlTextAreaElement",
"InputEvent",
"KeyboardEvent",
"Location",
"MessageEvent",
"MouseEvent",
"Node",
"ObserverCallback",
"PointerEvent",
"ProgressEvent",
"ReferrerPolicy",
"Request",
"RequestCache",
"RequestCredentials",
"RequestInit",
"RequestMode",
"RequestRedirect",
"Response",
"Storage",
"Text",
"TouchEvent",
"TransitionEvent",
"UiEvent",
"Url",
"WebSocket",
"WheelEvent",
"Window",
"Worker",
"WorkerGlobalScope",
"WorkerOptions",
]