blob: 305156bf166904cbc167388b52ce752ae4658392 (
plain) (
blame)
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
|
[package]
name = "benoit"
version = "2.4.0"
authors = ["Gabriel Bjørnager Jensen"]
edition = "2021"
description = "Mandelbrot renderer."
readme = "README.md"
repository = "https://mandelbrot.dk/benoit"
[[bin]]
name = "benoit"
path = "source/benoit/main.rs"
[profile.release]
codegen-units = 1
lto = "fat"
[dependencies]
ctor = "0.2.5"
enum-iterator = "1.4.1"
png = "0.17.10"
rayon = "1.8.0"
rug = "1.22.0"
sdl2 = "0.35.2"
toml = "0.8.2"
webp = "0.2.6"
|