-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (50 loc) · 1 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "franklin"
description = "A utility for generating images through evolution."
version = "0.1.4"
edition = "2021"
rust-version = "1.69"
authors = ["Kamil Rusin"]
readme = "README.md"
homepage = "https://github.com/nathiss/franklin"
repository = "https://github.com/nathiss/franklin"
license = "MIT"
keywords = ["generic-algorithm", "evolution", "evolutionary-art", "generation"]
categories = ["command-line-utilities", "simulation"]
include = [
"/src",
"./Cargo.toml",
"./LICENSE.txt",
"./README.md",
]
[dependencies]
anyhow = "1.0.53"
show-image = "0.13.1"
rand = "0.8.4"
clap = { version = "3.2.25", features = ["cargo"] }
rayon = "1.5.1"
num-integer = "0.1.44"
[dependencies.image]
version = "0.24.0"
default-features = false
features = [
"gif",
"jpeg",
"ico",
"png",
"pnm",
"tga",
"tiff",
"webp",
"bmp",
"hdr",
"dxt",
"dds",
"farbfeld",
]
[lib]
name = "franklin"
path = "src/lib.rs"
[[bin]]
name = "franklin-cli"
path = "src/bin.rs"