-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (78 loc) · 2.8 KB
/
Copy pathCargo.toml
File metadata and controls
86 lines (78 loc) · 2.8 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "phoenix_gui"
version = "0.2.12"
edition = "2021"
default-run = "phoenix_gui"
license = "MIT"
repository = "https://github.com/TomtheCoder2/phoenix_gui"
readme = "README.md"
keywords = ["phoenix", "gui", "data", "visualization", "plotting"]
categories = ["gui"]
authors = ["TomtheCoder2 (Nautilus) <@TomtheCoder2>"]
description = "A GUI library for visualizing data in a simple and easy way."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crossbeam = { version = "0.8.2" }
lazy_static = "1.4.0"
unroll = "0.1.5"
rand = "0.8.5"
ron = { version = "0.8" }
strum = { version = "0.26.2", features = ["derive"] }
strum_macros = { version = "0.26.2" }
matrixmultiply = { version = "0.3.3", default-features = false, optional = true }
#phoenix = { path = "../phoenix" }
egui = { version = "0.27.2" }
eframe = { version = "0.27.2", default-features = false, features = [
"accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }
serde = { version = "1", features = ["derive"] }
winit = { version = "0.30.0" }
rfd = { version = "0.14.1" }
egui_dock = { version = "0.12.0", features = ["serde"] }
erased-serde = { version = "0.4.5" }
typetag = { version = "0.2.8" }
egui_extras = { version = "0.27.2", features = ["image"] }
image = { version = "0.25.1", features = ["jpeg", "png"] }
# we make tcp default for the gui, cause i dont want to split the feature set again nvm lol
#tcp = { path = "../tcp" , optional = true}
tsyncp = { version = "0.3.0", optional = true }
tokio = { version = "1.28.1", features = ["full"], optional = true }
color-eyre = { version = "0.6.2", optional = true }
#data_types = { path = "../data_types" }
egui_file = { version = "0.17.0" }
#math = { path = "../math" }
lyon_geom = "1.0.4"
#special-fun = { version = "0.3.0" }
csv = "1.3.0"
bincode = "1.3.3"
lz4-compression = "0.7.0"
phoenix-rec = "0.2.13"
log = "0.4.20"
wasm-bindgen-futures = "0.4.42"
egui_plot = "0.27.2"
instant = "0.1.12"
egui_hotkey = "0.2.0"
[features]
#default = ["blas", "gui"]
default = []
blas = ["dep:matrixmultiply"]
mnist = []
#tcp = ["dep:tokio", "dep:tcp", "dep:tsyncp", "dep:tokio", "dep:color-eyre"]
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2"
wasm-bindgen = "0.2.92"
wasm-bindgen-futures = "0.4"
getrandom = { version = "0.2", features = ["js"] }
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = { version = "0.3" }
sysinfo = "0.30.12"
image = { version = "0.25.1" }
[lib]
crate-type = ["cdylib", "rlib"]
[build-dependencies]
winres = "0.1"