-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
43 lines (39 loc) · 845 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
37
38
39
40
41
42
43
[package]
name = "valora"
version = "0.2.12"
authors = ["Payton Turnage <[email protected]>"]
edition = "2018"
description = "A brush for generative fine art."
license = "MIT"
homepage = "https://github.com/turnage/valora"
repository = "https://github.com/turnage/valora.git"
readme = "readme.md"
[workspace]
members = ["valora_derive"]
[dependencies]
glium = "0.27"
glutin = "0.24"
structopt = "0.3.0"
rand = "0.7.0"
itertools = "0.8.0"
failure = "0.1.5"
failure_derive = "0.1.5"
image = "0.22.3"
nalgebra = "0.18.0"
lyon_path = "0.15.*"
lyon_tessellation = "0.15.*"
euclid = "0.20.4"
palette = "0.5.0"
rayon = "1.2.0"
arrayvec = "0.5.1"
lyon_geom = "0.14.1"
valora_derive = "0.1.0"
noise = "0.6.0"
glslwatch = "0.1.3"
winit = "0.22.0"
float-ord = "0.2.0"
[dev-dependencies]
itertools = "0.8.0"
nalgebra = "0.18.0"
[features]
ci = []