-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCargo.toml
35 lines (29 loc) · 998 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
[package]
name = "cornell-mcray"
version = "0.1.0"
authors = ["Tomasz Stachowiak <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
dolly = "0.1.3"
fastrand = "1.4"
kajiya = { path = "../kajiya/crates/lib/kajiya" }
kajiya-simple = { path = "../kajiya/crates/lib/kajiya-simple" }
macaw = "0.15.0"
physx = { git = "https://github.com/EmbarkStudios/physx-rs.git", rev = "b6146ef" }
physx-sys = { git = "https://github.com/EmbarkStudios/physx-rs.git", rev = "b6146ef" }
serde = { version = "1.0", features = ["derive"] }
slotmap = "1.0"
structopt = "0.3"
[features]
dlss = ["kajiya/dlss"]
[profile.release]
debug = true
lto = false
[profile.release.package.physx-sys]
debug = false
[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" }