-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (32 loc) · 928 Bytes
/
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
[package]
name = "wassily"
version = "0.1.0"
authors = ["jeffreyrosenbluth <[email protected]>"]
edition = "2021"
exclude = [
"src/bin/meta.rs"
]
license = "MIT OR Apache-2.0"
description = "wassily is both an API and set of tools for creating generative 2D art"
readme = "README.md"
repository = "https://github.com/jeffreyrosenbluth/wassily/"
homepage = "https://github.com/jeffreyrosenbluth/wassily/"
keywords = ["art", "graphics","2d", "creative", "sketch"]
categories = ["graphics"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tiny-skia = "0.11.4"
noise = "0.9"
rand = {version = "0.8.5", features = ["small_rng"]}
rand_distr = "0.4"
palette = "0.7.6"
png = "0.17.10"
image = "0.25.4"
color-thief = "0.2"
num-traits = "0.2"
num-complex = "0.4.6"
once_cell = "1.19"
log = "0.4.22"
[dev-dependencies]
rayon = "1.10.0"
itertools = "0.13.0"