-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (38 loc) · 995 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
[package]
name = "pinlab"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["egui_graphs"]
[dependencies]
# wayland support is not enjoyable
eframe = { version = "0.30", features = [
"default_fonts",
"persistence",
"x11",
"glow",
], default-features = false }
egui = { version = "0.30", features = ["persistence"] }
egui_graphs = { path = "./egui_graphs", version = "0.22", features = [
"events",
] }
egui-modal = "0.6"
petgraph = { version = "0.7", features = ["stable_graph", "serde-1"] }
open = "5.3"
serde = "1"
uuid = { version = "1.12", features = ["serde", "v4"] }
rfd = "0.15"
serde_json = "1"
tokio = { version = "1", features = ["full"] }
anyhow = "1"
# lazy_async_promise = "0.6"
crossbeam = "0.8"
egui_extras = "0.30"
tokio-shutdown = "0.1"
clap = { version = "4.5", features = ["derive"] }
poll-promise = { version = "0.3", features = ["tokio"] }
giro = "0.1"
blake3 = { version = "1.5", features = ["serde"] }
hf = "0.3"
log = "0.4"
pretty_env_logger = "0.5.0"