-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
40 lines (36 loc) · 884 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
39
40
[package]
name = "rust-raytracer"
description = "A Raytracer in Rust"
license = "MIT"
version = "0.1.0"
authors = ["Marijn Hurkens <[email protected]>"]
edition = "2021"
repository = "https://github.com/marijnhurkens/rust-raytracer"
keywords = ["raytracer"]
categories = ["graphics"]
[dependencies]
lazy_static = "1.4"
image = "0.24"
ggez = "0.9.0-rc0"
rand = "0.8.5"
nalgebra = "0.32"
bvh = "0.6"
tobj = "3.2"
indicatif = "0.17"
sobol = "1.0.2"
yaml-rust = "0.4"
oidn = "1.4.2"
clap = {version="3.1.5", features=["derive"]}
bitflags = "1.3.2"
num-traits = "0.2"
approx = "0.5.1"
[patch.crates-io]
ggez = { git = 'https://github.com/ggez/ggez.git', branch = "devel" }
bvh = {git = "https://github.com/dbenson24/bvh", branch = "master" }
[profile.release]
#opt-level = 2
#lto = "thin"
#rustflags = ["-C target-cpu=native"]
#debug = true
#[env]
#OIDN_DIR="~/Downloads/oidn/"