generated from emilk/eframe_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 1016 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
[workspace]
resolver = "2"
members = ["crates/client", "crates/server"]
[workspace.dependencies]
actix-cors = "0.7.0"
actix-files = "0.6.6"
actix-web = "4.3.1"
anyhow = "1.0.95"
chrono = "0.4.39"
eframe = { version = "0.30", default-features = false }
egui = "0.30"
egui_extras = "0.30.0"
futures-util = "0.3.31"
log = "0.4.22"
reqwest-cross = { git = "https://github.com/c-git/reqwest-cross", branch = "develop" }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.135"
shuttle-runtime = { version = "0.51.0", default-features = false }
thiserror = "2.0.11"
tokio = { version = "1.43.0", default-features = false, features = [
"macros",
"rt-multi-thread",
] }
tracing = "0.1.41"
tracing-actix-web = "0.7.15"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
wasm-bindgen-futures = "0.4.50"
web-sys = "0.3.77"
[profile.release]
opt-level = 2 # fast and small wasm
# https://doc.rust-lang.org/cargo/reference/overriding-dependencies.html#testing-a-bugfix
[patch.crates-io]