-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 1.08 KB
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
[workspace]
members = ["backend", "frontend"]
resolver = "2"
[workspace.lints.rust]
unused_variables = "allow"
unused_imports = "allow"
dead_code = "allow"
unused_mut = "allow"
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
axum = { version = "0.7", features = ["multipart"] }
tokio = { version = "1.0", features = ["full"] }
tower-http = { version = "0.5", features = ["cors", "fs"] }
tracing = "0.1"
tracing-subscriber = "0.3"
chrono = { version = "0.4", features = ["serde"] }
yew = { version = "0.20", features = ["csr"] }
serde-wasm-bindgen = "0.2"
wasm-bindgen = "0.2.87"
gloo-net = "0.3"
gloo-storage = "0.3"
gloo = { version = "0.8", features = ["utils", "net", "storage"] }
gloo-file = "0.2"
gloo-timers = { version = "0.3", features = ["futures"] }
wasm-bindgen-futures = "0.4"
wasm-bindgen-test = "0.3.25"
console_error_panic_hook = "0.1"
web-sys = { version = "0.3", features = ["console", "HtmlInputElement", "HtmlTextAreaElement", "HtmlSelectElement"] }
js-sys = "0.3"
log = "0.4"
thiserror = "1.0"
uuid = { version = "1.7", features = ["v4"] }