-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (58 loc) · 1.89 KB
/
Cargo.toml
File metadata and controls
61 lines (58 loc) · 1.89 KB
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
[package]
name = "rustray"
version = "0.5.0"
authors = ["Christian Iversen <ci@iversenit.dk>"]
edition = "2021"
description = "A modular, fun and flexible ray-tracer"
readme = "README.md"
license = "GPLv3"
[profile.best]
inherits = "release"
codegen-units = 1
lto = "fat"
opt-level = 3
[features]
default = ["rayon", "fixedpoint1", "fixedpoint2", "gui"]
fixedpoint = ["dep:fixed", "dep:az", "dep:assert_float_eq", "derive_more/not"]
fixedpoint1 = ["fixedpoint"]
fixedpoint2 = ["fixedpoint"]
rayon = ["dep:rayon", "indicatif/rayon"]
gui = ["dep:eframe", "dep:egui"]
[dependencies]
image = { version = "0.25", default-features = false, features = [ "png", "jpeg", "bmp" ] }
num = "0.4.1"
num-traits = "0.2.18"
rand = "0.8.5"
indicatif = { version = "0.17.8" }
colog = "1.3.0"
log = "0.4.21"
rayon = { version = "1.10", optional = true }
obj = { version = "0.10" }
derive_more = { version = "0.99", default-features = false, features = [ "mul", "add_assign", "add" ] }
cgmath = "0.18"
zip = "0.6"
thiserror = "1"
reqwest = { version = "0.12", features = ["blocking"] }
pest = "=2.7.8"
pest_derive = "2.7"
itertools = "0.12"
perlin2d = "0.2"
rtbvh = "0.6"
ply-rs = "0.1"
glam = "0.27"
assert_float_eq = { version = "1.1.3", optional = true }
fixed = { version = "2.0.0-alpha.27.0", features = ["num-traits"], optional = true }
az = { version = "1.2", optional = true }
crossbeam-channel = "0.5.12"
workerpool = { version = "1.2.1", features = ["crossbeam"] }
eframe = { version = "0.26", default-features = false, features = ["glow"], optional = true }
egui = { version = "0.26", default-features = false, features = ["default_fonts"], optional = true }
clap = { version = "4.5.4", features = ["derive"] }
egui-file-dialog = "0.4"
egui-gizmo = "0.16.2"
mint = "0.5.9"
egui_plot = "0.26"
flagset = "0.4.5"
egui-phosphor = "=0.4"
parking_lot = { version = "0.12.1", features = ["arc_lock", "hardware-lock-elision"] }
camino = "1.1.6"