-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
59 lines (47 loc) · 1.39 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "graphpu"
version = "0.5.0"
authors = ["Troy Ni <[email protected]>", "CPunisher <[email protected]>"]
edition = "2021"
description = "Next-Gen 3D GPU Graph-Vis App"
documentation = "https://docs.graphpu.com/"
readme = "README.md"
homepage = "https://graphpu.com/"
repository = "https://github.com/TO_BE_PUBLISHED"
license-file = "LICENSE_TO_BE_WRITE.txt"
build = "build.rs"
[features]
test-file = []
exe = []
[lib]
[[example]]
name = "test_file"
test = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
egui = "0.20.1"
egui_extras = { version = "0.20.0" }
eframe = { version = "0.20.1", features = ["wgpu"] }
egui-wgpu = "0.20.0"
bytemuck = { version = "1.9.1" }
wgpu = { version = "0.14", features = ["webgl"] }
pollster = { version = "0.2.5" }
glam = { version = "0.20.2" }
image = "0.23"
anyhow = "1.0"
directories = "4.0.1"
rayon = "1.5.3"
png = "0.17"
futures-intrusive = "0.4.0"
nanorand = { version = "0.7", default-features = false, features = ["wyrand"] }
rfd = "0.9.1"
csv = "1.1.6"
serde = { version = "1.0.140", features = ["derive"] }
strum = { version = "0.24.1", features = ["derive"] }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
chrono = "0.4.22"
lazy_static = "1.4.0"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[patch.crates-io]
naga = { path = "./lib/naga" }