forked from hadronized/luminance-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (42 loc) · 1.26 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
[workspace]
members = [
"integration-tests/desktop",
"integration-tests/web",
"luminance",
"luminance-derive",
"luminance-examples",
"luminance-examples-web",
"luminance-front",
"luminance-gl",
"luminance-glfw",
"luminance-glutin",
"luminance-sdl2",
"luminance-webgl",
"luminance-web-sys",
"luminance-windowing",
]
default-members = [
"integration-tests/desktop",
"luminance",
"luminance-derive",
"luminance-examples",
"luminance-front",
"luminance-gl",
"luminance-glfw",
"luminance-glutin",
#"luminance-sdl2", # commented out because of <https://github.com/Rust-SDL2/rust-sdl2/issues/1029>
"luminance-windowing",
]
[patch.crates-io]
luminance = { path = "./luminance" }
luminance-derive = { path = "./luminance-derive" }
luminance-examples = { path = "./luminance-examples" }
luminance-examples-web = { path = "./luminance-examples-web" }
luminance-front = { path = "./luminance-front" }
luminance-gl = { path = "./luminance-gl" }
luminance-glfw = { path = "./luminance-glfw" }
luminance-glutin = { path = "./luminance-glutin" }
luminance-sdl2 = { path = "./luminance-sdl2" }
luminance-webgl = { path = "./luminance-webgl" }
luminance-web-sys = { path = "./luminance-web-sys" }
luminance-windowing = { path = "./luminance-windowing" }