-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
67 lines (65 loc) · 1.19 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
[package]
name = "fig"
version = "0.1.0"
authors = ["jesskfulwood <[email protected]>"]
edition = "2018"
[dependencies]
console_error_panic_hook = "0.1.6"
derive_more = "0.15.0"
futures = "0.3.1"
gloo-timers = "0.1"
js-sys = "0.3.31"
log = "0.4.8"
serde = "1.0.102"
serde_json = "1.0.41"
url = "2.1.0"
wasm-bindgen = "0.2.54"
wasm-bindgen-futures = "0.4.4"
bit-set = "0.5.1"
downcast-rs = "1.1.1"
# TODO use 0.10 once released
reqwest = { git = "https://github.com/seanmonstar/reqwest" }
[dependencies.web-sys]
version = "0.3.31"
features = [
'console',
'AbortController',
'AbortSignal',
'Attr',
'CloseEvent',
'Document',
'DomException',
'Element',
'ErrorEvent',
'Event',
'EventTarget',
'FetchEvent',
'Headers',
'History',
'HtmlAnchorElement',
'HtmlCollection',
'HtmlDivElement',
'HtmlElement',
'HtmlInputElement',
'HtmlSelectElement',
'HtmlTextAreaElement',
'InputEvent',
'KeyboardEvent',
'Location',
'MessageEvent',
'Node',
'NodeList',
'PopStateEvent',
'ReferrerPolicy',
'Request',
'RequestInit',
'RequestCache',
'RequestCredentials',
'RequestMode',
'RequestRedirect',
'Response',
'Storage',
'Text',
'WebSocket',
'Window',
]