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"] }
|
2022-08-02 17:07:49 +02:00
|
|
|
indicatif = "0.17.0"
|
2022-08-16 17:59:13 +02:00
|
|
|
pixel-canvas = "0.2.3"
|
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"
|