Renderer/Cargo.toml

14 lines
376 B
TOML
Raw Normal View History

2022-04-07 23:04:50 +02:00
[package]
name = "renderer"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-05-11 18:38:30 +02:00
image = { version = "0.24.2", default-features = false, features = ["jpeg", "png", "pnm"] }
indicatif = "0.16.2"
2022-06-01 17:59:25 +02:00
rand = { version = "0.8.5", features = ["small_rng"] }
2022-06-29 15:45:02 +02:00
rayon = "1.5.3"
2022-07-15 00:08:51 +02:00
tobj = "3.2.3"