csci5607/assignment-1b/Cargo.toml

23 lines
474 B
TOML
Raw Normal View History

2023-02-06 03:52:42 +00:00
[package]
name = "assignment-1b"
authors = ["Michael Zhang <zhan4854@umn.edu>"]
version = "0.1.0"
edition = "2021"
2023-02-13 05:46:54 +00:00
[[bin]]
name = "raytracer1b"
path = "src/main.rs"
2023-02-06 03:52:42 +00:00
[dependencies]
anyhow = "1.0.68"
2023-02-16 00:25:22 +00:00
base64 = "0.21.0"
2023-02-15 08:36:53 +00:00
clap = { version = "4.1.4", features = ["cargo", "derive"] }
2023-02-06 03:52:42 +00:00
derivative = "2.2.0"
nalgebra = "0.32.1"
num = { version = "0.4.0", features = ["serde"] }
ordered-float = "3.4.0"
2023-02-16 00:25:22 +00:00
rand = "0.8.5"
2023-02-06 03:52:42 +00:00
rayon = "1.6.1"
2023-02-15 19:09:56 +00:00
tracing = "0.1.37"
2023-02-16 07:58:10 +00:00
tracing-subscriber = "0.3.16"