-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 898 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
[package]
name = "attention-challenge"
version = "0.1.0"
edition = "2021"
description = "Attention Challenge Meditation App"
repository = "https://github.com/uvizhe/attention-challenge"
license = "GPL-3.0"
authors = ["Alexander Uvizhev"]
[workspace]
members = ["src-tauri"]
[lib]
crate-type = ["rlib", "cdylib"]
[dependencies]
gloo-events = "0.1"
gloo-timers = "0.2"
js-sys = "0.3"
rand = "0.8"
getrandom = { version = "0.2", features = ["js"] }
wasm-bindgen = "0.2"
yew = { version="0.20", features=["csr"] }
yew-router = "0.17"
serde = "1.0"
serde_json = "1.0"
[dependencies.plotters]
version = "0.3"
default-features = false
features = ["line_series", "svg_backend"]
[dependencies.web-sys]
version = "0.3"
features = [
"CustomEvent",
"HtmlDivElement",
"HtmlMediaElement",
"Navigator",
"ScrollIntoViewOptions",
"ScrollLogicalPosition",
"Storage",
"Window",
]