-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 823 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
[package]
name = "my-website"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yew = "0.19"
log = "0.4.6"
wasm-logger = "0.2.0"
gloo = "0.8.0"
gloo-net = { version = "0.2.6", features = ["json"] }
wasm-bindgen = "0.2.83"
web-sys = { version = "0.3.60", features = ["DomRect", "Element", "Touch", "TouchList", "TouchEvent", "HtmlAudioElement", "HtmlMediaElement", "HtmlButtonElement", "HtmlVideoElement", "HtmlMediaElement", "HtmlTextAreaElement"] }
rand = "0.8.5"
getrandom = { version = "0.2", features = ["js"] }
wasm-bindgen-futures = "0.4.33"
futures = "0.3.24"
serde_json = "1.0"
serde = "1.0.145"
js-sys = "0.3.60"
urlencoding = "2.1.2"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = "z"