-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
70 lines (54 loc) · 963 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "raytracer"
version = "0.1.0"
edition = "2021"
[profile.release]
lto = true
panic = "abort"
# debug = true
[dependencies]
approx = "0.5.1"
itertools = "0.10.3"
im-rc = "15.1.0"
rayon = "1.5.3"
enum_dispatch = "0.3.8"
noise = "0.7.0"
[[bin]]
name = "circle"
path = "exercises/circle.rs"
[[bin]]
name = "clock"
path = "exercises/clock.rs"
[[bin]]
name = "cover"
path = "exercises/cover.rs"
[[bin]]
name = "csg"
path = "exercises/csg.rs"
[[bin]]
name = "glass_bubble"
path = "exercises/glass_bubble.rs"
[[bin]]
name = "hexagon"
path = "exercises/hexagon.rs"
[[bin]]
name = "pattern"
path = "exercises/pattern.rs"
[[bin]]
name = "plane"
path = "exercises/plane.rs"
[[bin]]
name = "projectile"
path = "exercises/projectile.rs"
[[bin]]
name = "room"
path = "exercises/room.rs"
[[bin]]
name = "scene"
path = "exercises/scene.rs"
[[bin]]
name = "shading"
path = "exercises/shading.rs"
[[bin]]
name = "teapot"
path = "exercises/teapot.rs"