-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
57 lines (53 loc) · 1.08 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
[package]
name = "web-app"
version = "0.1.0"
edition = "2021"
[dependencies]
yew = { version="0.21", features=["csr"] }
yew-template = "~0.10"
wasm-bindgen = {version="0.2", features=["serde-serialize"]}
wasm-bindgen-futures = "0.4"
js-sys = "0.3"
chrono = {version="0.4", features=["wasmbind"]}
chrono-tz = "0.8"
getrandom = { version = "0.2", features = ["js"]}
common = {path="../common"}
serde_json = "1.0"
serde = {version="1.0", features=["derive"]}
lazy_static = "1.4"
calendrier = "0.1.5"
[dependencies.web-sys]
version = "0.3"
features = [
"console",
"Window",
"Storage",
"History",
"PopStateEvent",
"Crypto",
"Document",
"Element",
"HtmlCollection",
"MouseEvent",
"TouchEvent",
"TouchList",
"Touch",
"CssStyleDeclaration",
"Request",
"RequestInit",
"Headers",
"Response",
"DomRect",
"Navigator",
"ServiceWorkerContainer",
"HtmlSelectElement",
"HtmlOptionsCollection",
"HtmlOptionElement",
"HtmlElement"
]
[profile.release]
lto = true
codegen-units = 1
opt-level = "z"
[features]
debug = []