-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (43 loc) · 978 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
[package]
name = "petompp-web-front"
version = "1.2.0"
edition = "2021"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
opt-level = "z"
[dependencies]
async-std = "1.12"
chrono = { version = "0.4", features = ["serde"] }
deref-derive = "0.1"
futures = "0.3"
gloo = "0.10"
lazy_static = "1.4"
markdown = "1.0.0-alpha.12"
petompp-web-models = { git = "https://github.com/PetoMPP/petompp-web-models.git", branch = "0.7.4", features = [
"timeago",
"wasm",
] }
regex = "1.10"
reqwasm = "0.5"
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.9"
strum = { version = "0.25", features = ["derive"] }
timeago = "0.4"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = [
"ClipboardEvent",
"Crypto",
"DataTransfer",
"HtmlImageElement",
"HtmlInputElement",
"HtmlDialogElement",
"Navigator",
"MediaQueryList",
] }
yew = { version = "0.20", features = ["csr"] }
yew-router = "0.17"
yewdux = "0.9"