-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 822 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 822 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
[package]
name = "egui_tabular"
version = "0.1.0"
edition = "2021"
[workspace]
members = [
"tabular_core",
"tabular_derive",
"demos/*",
]
[workspace.dependencies]
rvariant = { path = "../rvariant", features = ["serde"] }
strum = { version = "0.28", features = ["derive"] }
[dependencies]
egui = { version = "0.33" }
egui_extras = { version = "0.33", features = ["serde"] }
#egui-modal = { version = "0.6" }
#egui-phosphor = { version = "0.7", features = ["fill"] }
itertools = "0.14"
rfd = "0.17"
log = "0"
serde = { version = "1", features = ["derive"] }
csv = "1.3"
strum = { workspace = true }
tap = "1.0"
tabular_core = { path = "./tabular_core" }
tabular_derive = { path = "./tabular_derive" }
chardetng = "0.1"
encoding_rs = "0.8"
encoding_rs_io = "0.1"
rvariant = { workspace = true }
indexmap = "2"