-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 711 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "primitive"
version = "0.1.0"
authors = ["Anthony Nguyen <anknguyen@gmail.com>"]
description = "Approximates images by drawing random lines"
homepage = "https://github.com/anthonynguyen/primitive"
documentation = "https://github.com/anthonynguyen/primitive"
repository = "https://github.com/anthonynguyen/primitive"
readme = "README.md"
keywords = ["image", "approximation"]
categories = ["multimedia::images", "command-line-interface"]
license = "MIT"
[dependencies]
chrono = "0.4.0"
clap = "2.26.2"
error-chain = { version = "0.11.0", default-features = false }
image = "0.16.0"
log = "0.3.8"
loglog = "0.3.2"
rand = "0.3.17"
[badges]
travis-ci = { repository = "anthonynguyen/primitive" }