-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (35 loc) · 689 Bytes
/
Cargo.toml
File metadata and controls
43 lines (35 loc) · 689 Bytes
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
[package]
name = "pathtrace-rs"
version = "0.1.2"
authors = ["Cameron Hart <cameron.hart@gmail.com>"]
edition = "2018"
[dependencies]
rand = "0.8"
rand_xoshiro = "0.6"
rayon = "1.5"
glam = "0.30"
# serde = "1.0"
# serde_derive = "1.0"
# serde_json = "1.0"
typed-arena = "2.0"
[features]
core_intrinsics = []
bench = []
[dependencies.glium]
version = "0.25"
features = ["glutin"]
default-features = false
[dependencies.clap]
version = "2.33"
default-features = false
[dependencies.image]
version = "0.25"
default-features = false
features = ["png", "jpeg"]
[profile.dev]
opt-level = 3
[profile.release]
debug = true
# lto = true
# [patch.crates-io]
# glam = { path = "../glam-rs" }