-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (38 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
50 lines (38 loc) · 1.26 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
# [package]
# name = "render-graph"
# version = "0.1.0"
# edition = "2021"
[workspace]
members = ["editor", "graph", "shaders", "common", "persistence", "ffgl-lib"]
default-members = ["editor"]
[workspace.package]
authors = ["Edward Taylor <dev@edt.nz>"]
license = " GPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# [target.'cfg(windows)'.dependencies]
# spout_texture_share = { path = "./spout" }
# [target.'cfg(macos)'.dependencies]
# syphon = { path = "./syphon"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1
[workspace.dependencies]
delegate = "0.9.0"
egui = { version = "0.19.0", features = ["bytemuck"] }
emath = { version = "0.19.0", features = ["bytemuck"] }
epaint = { version = "0.19.0", features = ["bytemuck"] }
glutin = { version = "0.30.6" }
color-eyre = "0.5"
egui_node_graph = { version = "0.4.0", features = ["persistence"] }
glium = "0.32.1"
anyhow = "1.0.66"
serde = "1.0.147"
vectorize = "0.2.0"
strum_macros = "0.24"
strum = { version = "0.24", features = ["derive"] }
slotmap = "1.0.6"
thiserror = "1.0.37"
glam = { version = "0.21.3", features = ["serde"] }
itertools = "0.10.2"