csci5607/assignment-1c/Cargo.toml

33 lines
651 B
TOML
Raw Normal View History

2023-02-19 00:28:55 +00:00
[package]
2023-02-20 23:40:19 +00:00
name = "assignment-1c"
2023-02-19 00:28:55 +00:00
authors = ["Michael Zhang <zhan4854@umn.edu>"]
version = "0.1.0"
edition = "2021"
# For profiling with flamegraphs
[profile.release]
debug = true
# Optimize for size when creating handin
[profile.release-handin]
inherits = "release"
strip = true
lto = true
[[bin]]
2023-02-20 23:40:19 +00:00
name = "raytracer1c"
2023-02-19 00:28:55 +00:00
path = "src/main.rs"
[dependencies]
anyhow = "1.0.68"
base64 = "0.21.0"
clap = { version = "4.1.4", features = ["cargo", "derive"] }
derivative = "2.2.0"
nalgebra = "0.32.1"
num = { version = "0.4.0", features = ["serde"] }
ordered-float = "3.4.0"
rand = "0.8.5"
rayon = "1.6.1"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"