-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (41 loc) · 878 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
45
46
47
[package]
name = "ethotimer"
version = "0.1.0"
authors = ["Andrew Straw <[email protected]>"]
edition = "2018"
[lib]
crate-type = ["cdylib"]
[dependencies]
bytesize = "1.3"
log = "0.4"
wasm-logger = "0.2.0"
instant = { version = "0.1", features = [ "wasm-bindgen" ] }
chrono = {version="0.4", features=["serde","wasmbind"]}
gloo-timers = "0.3.0"
yew = "0.19.3"
wasm-bindgen = "^0.2.45"
js-sys = "0.3.50"
wee_alloc = "0.4.5"
serde = { version = "^1.0.205", features = ['derive'] }
futures = "0.3"
[dependencies.web-sys]
version="0.3.68"
features=[
"Blob",
"CssStyleDeclaration",
"DateTimeValue",
"Document",
"Element",
"File",
"FileList",
"FileReader",
"History",
"HtmlAnchorElement",
"HtmlInputElement",
"Location",
"Window",
"Url",
]
[profile.release] # Attempts to minimize file size
lto = true
opt-level = 'z'