forked from lucasmerlin/egui-subsecond-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (30 loc) · 766 Bytes
/
Cargo.toml
File metadata and controls
39 lines (30 loc) · 766 Bytes
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
[package]
name = "egui-subsecond"
version = "0.1.0"
edition = "2024"
[dependencies]
subsecond.workspace = true
dioxus-cli-config.workspace = true
tungstenite.workspace = true
serde_json.workspace = true
serde.workspace = true
workspace_crate = { path = "workspace_crate" }
eframe.workspace = true
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"
[workspace]
members = ["workspace_crate"]
[workspace.dependencies]
egui = "0.34.1"
eframe = { version = "0.34.1", features = ["persistence"] }
subsecond = "0.7.4"
dioxus-cli-config = "0.7.4"
tungstenite = { version = "0.28", features = ["native-tls"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }