-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (34 loc) · 977 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
[package]
name = "rustracer"
license = "GPL-3.0"
version = "1.0.4"
edition = "2021"
authors = [
"Andrea Rossoni <andrea dot ros.21 at e.email>",
"Paolo Azzini <paolo dot azzini1 at gmail.com>",
]
readme = "README.md"
repository = "https://github.com/andros21/rustracer"
homepage = "https://github.com/andros21/rustracer"
documentation = "https://andros21.github.io/rustracer/docs"
categories = ["command-line-utilities"]
description = "a multi-threaded raytracer in pure rust"
exclude = [".github/*", ".gitignore", "examples/*", "install.sh", "makefile"]
keywords = ["cli", "image", "raytracer", "raytracing", "thread"]
[[bin]]
name = "rustracer"
path = "src/main.rs"
[dependencies]
thiserror = "2.0.3"
byteorder = "1.5.0"
rayon = "1.10.0"
colored = "2.1.0"
clap_complete = "4.5.38"
[dependencies.image]
version = "0.24.9"
default-features = false
features = ["farbfeld", "png"]
[dependencies.clap]
version = "4.5.21"
default-features = true
features = ["wrap_help"]