forked from Pauan/SaltyBetBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (67 loc) · 1.35 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
[package]
name = "salty_bet_bot"
version = "0.1.0"
authors = ["Pauan <[email protected]>"]
edition = "2018"
[profile.release]
lto = true
panic = "abort"
debug-assertions = true
[dependencies]
algorithm = { path = "./algorithm" }
serde = "1.0.27"
serde_json = "1.0.10"
serde_derive = "1.0.27"
dominator = "0.5.0"
futures-signals = "0.3.4"
futures-core = "0.3.0"
futures-util = "0.3.0"
futures-channel = "0.3.0"
discard = "1.0.0"
gloo-timers = "0.2.0"
wasm-bindgen = { version = "0.2.56", features = ["nightly"] }
wasm-bindgen-futures = "0.4.5"
js-sys = "0.3.33"
[dependencies.web-sys]
version = "0.3.33"
features = [
"console",
"Blob",
"Document",
"DomException",
"Element",
"FileReader",
"HtmlElement",
"HtmlInputElement",
"IdbCursor",
"IdbCursorWithValue",
"IdbDatabase",
"IdbFactory",
"IdbKeyRange",
"IdbObjectStore",
"IdbObjectStoreParameters",
"IdbOpenDbRequest",
"IdbRequest",
"IdbTransaction",
"IdbTransactionMode",
"IdbVersionChangeEvent",
"Location",
"MutationObserver",
"MutationObserverInit",
"MutationRecord",
"Node",
"NodeList",
"Performance",
"ProgressEvent",
"Window",
]
[workspace]
members = [
"bin/process-records",
"src/background",
"src/chart",
"src/popup",
"src/records",
"src/saltybet",
"src/twitch_chat",
]