-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (36 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
[package]
name = "censor-analyser"
version = "0.6.0"
authors = ["Quickmarble"]
repository = "https://github.com/Quickmarble/censor"
description = "Palette analysis tool"
categories = ["command-line-utilities", "multimedia::images", "visualization"]
keywords = ["color", "colour", "palette", "tool"]
license = "MIT"
readme = "README.md"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "censor"
path = "src/main.rs"
[dependencies]
json = "0.12.4"
const_format = "0.2.17"
escape_string = "0.1.1"
clap = "2.33.3"
image = "0.23.14"
directories = "3.0.2"
serde = { version = "1.0.127", features = ["derive"] }
bincode = "1.3.3"
img-parts = "0.2.3"
vpsearch = "2.0.1"
crossbeam-channel = "0.5.1"
crossbeam-utils = "0.8.5"
rand = "0.8.4"
text_io = "0.1.9"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
ureq = "2.1.1"
[target.'cfg(target_arch = "wasm32")'.dependencies]
stdweb = "0.4.20"
console_error_panic_hook = "0.1.6"
hex = "0.4.3"