-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (55 loc) · 1.42 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
59
60
61
62
63
64
65
66
[workspace]
members = [
"epgi-core",
"epgi-common",
"epgi-2d",
# # Glazier was broken due to wgpu updates
# "epgi-glazier",
"epgi-macro",
"epgi-material",
"epgi-winit",
# We have to manually expand each sub-item to exclude defunt glazier example https://github.com/rust-lang/cargo/issues/6745
"examples/winit-simple",
"examples/rocket-science", "examples/bouncing-blocks", "examples/sunburst",
]
resolver = "2"
[workspace.package]
edition = "2021"
rust-version = "1.75"
keywords = ["graphics"]
license = "MIT OR Apache-2.0"
[workspace.dependencies.epgi-core]
package = "epgi-core"
path = "./epgi-core"
[workspace.dependencies.epgi-2d]
package = "epgi-2d"
path = "./epgi-2d"
[workspace.dependencies.epgi-common]
package = "epgi-common"
path = "./epgi-common"
# [workspace.dependencies.epgi-glazier]
# package = "epgi-glazier"
# path = "./epgi-glazier"
[workspace.dependencies.epgi-material]
package = "epgi-material"
path = "./epgi-material"
[workspace.dependencies.epgi-winit]
package = "epgi-winit"
path = "./epgi-winit"
[workspace.dependencies.epgi-macro]
package = "epgi-macro"
path = "./epgi-macro"
[workspace.dependencies]
hashbrown = { version = "0.14", features = ["rayon"] }
vello = "0.2.1"
vello_encoding = "0.2.1"
peniko = "0.1.0"
masonry = "0.2.0"
parley = "0.1.0"
winit = "0.30.4"
dpi = "0.1.1"
wgpu = "0.20.1"
rayon = "1.9"
log = "0.4.21"
tracing = "0.1.40"
typed-builder = "0.18.1"