-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (54 loc) · 1.09 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (54 loc) · 1.09 KB
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
55
56
57
58
59
60
61
[package]
name = "algoart"
version = "0.0.2"
edition = "2021"
license = "MIT"
readme = "README.md"
description = "Algorithmic Art CLI: A Command-Line Tool for Creating Generative Art"
keywords = ["cli", "terminal", "graphics", "image", "cgi"]
repository = "https://github.com/obaraelijah/algoart"
exclude = [
"examples/*",
"benches/*",
"docs/*",
"tests/*",
".github/*",
".vscode/*",
"static/*",
"*.json",
"*.png"
]
[dependencies]
image = "0.25.5"
num-complex = "0.4.1"
rayon = "^1.5.3"
clap = { version = "^4.5.23", features = ["derive"] }
serde = { version = "^1.0.137", features = ["derive"] }
serde_json = "^1.0.134"
jsonnet-rs = "^0.17.0"
display_json = "^0.2.0"
rand = "^0.8.5"
rand_distr = "^0.4.3"
map-macro = "^0.3.0"
anyhow = "^1.0.66"
log = "^0.4.17"
env_logger = "^0.11.6"
divrem = "^1.0.0"
num = "^0.4.0"
[dev-dependencies]
criterion = "^0.4.0"
[lib]
bench = false
[[bin]]
name = "algoart"
path = "src/main.rs"
bench = false
[[bench]]
name = "post_processing"
harness = false
[[bench]]
name = "algorithms"
harness = false
[[bench]]
name = "sampler"
harness = false