-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
51 lines (43 loc) · 1.27 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
[package]
name = "rustic"
version = "0.1.0"
authors = ["Pema Malling <pemamalling@gmail.com>"]
edition = "2021"
[dependencies]
shared_structs = { path = "shared_structs" }
kernels = { path = "kernels" }
bytemuck = { version = "1.13.1", features = ["derive"] }
glam = { version = "0.22.0", features = ["bytemuck"] }
gpgpu = { git = "https://github.com/pema99/gpgpu-rs.git", branch = "dev", features = ["image", "integrate-image"] }
rand = "0.8.5"
oidn = { version = "1.4.3", optional = true }
lazy_static = "1.4.0"
russimp = { version = "2.0.5", features = ["prebuilt"] }
image = { version = "0.24.6", default-features = false, features = ["png", "jpeg", "hdr", "tga", "exr", "openexr"] }
parking_lot = "0.12.1"
winit = "0.27.5"
wgpu = { version = "0.14.2", features = ["spirv"] }
egui-wgpu = "0.20.0"
egui_winit_platform = "0.17.0"
egui = "0.20.0"
pollster = "0.2.5"
tinyfiledialogs = "3.9.1"
fast_image_resize = "2.7.3"
rayon = "1.7.0"
[build-dependencies]
spirv-builder = "0.7.0"
[features]
oidn = ["dep:oidn"]
[profile.release.build-override]
opt-level = 3
codegen-units = 16
[profile.dev.build-override]
opt-level = 3
[profile.dev]
opt-level = 1
incremental = true
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "benchmark"
harness = false