forked from EmbarkStudios/kajiya
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
38 lines (31 loc) · 972 Bytes
/
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
[workspace]
resolver = "2"
members = [
"crates/bin/bake",
"crates/bin/hello",
"crates/bin/view",
"crates/lib/kajiya-asset",
"crates/lib/kajiya-asset-pipe",
"crates/lib/kajiya-backend",
"crates/lib/kajiya-imgui",
"crates/lib/kajiya-rg",
"crates/lib/kajiya-simple",
"crates/lib/kajiya",
"crates/lib/rust-shaders",
"crates/lib/rust-shaders-shared",
"crates/lib/ash-imgui",
]
exclude = [
"crates/bin/rust-shader-builder",
"crates/lib/ngx_dlss"
]
[patch.crates-io]
# Official ray-tracing extensions
rspirv = { git = "https://github.com/gfx-rs/rspirv.git", rev = "dae552c" }
spirv_headers = { git = "https://github.com/gfx-rs/rspirv.git", rev = "dae552c" }
[profile.release]
debug = 1
#[patch."https://github.com/h3r2tic/rspirv-reflect"]
#rspirv-reflect = { path = "../rspirv-reflect" }
#[patch."https://github.com/h3r2tic/gpu-profiler.git"]
#gpu-profiler = { path = "../gpu_profiler", features = ["use-ash"] }