blob: 12889f3f1a04307a7fc7edce7381284ea573fec4 (
plain)
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
|
[package]
name = "squash"
version = "0.3.0"
authors = ["gennyble <gen@nyble.dev>"]
edition = "2021"
license = "ISC"
description = "CLI tool for quantizing colours"
repository = "https://github.com/gennyble/colorsquash/tree/main/squash"
# the meat 'o the thing! the meaning behind it all
[dependencies.colorsquash]
path = ".."
version = "0.2.0"
default-features = false # `kmeans` crate currently very broken
features = ["gifed"]
[dependencies]
# just useful tools for writing binaries
anyhow = "1.0.75"
camino = "1.1.6"
# time of writing:
# png has a change to ignore extra iCCP blocks my test image needed. it hasn't
# been released yet, so we're using the git here. the commit we require is e4b4811
png = { git = "https://github.com/image-rs/image-png.git", rev = "f10238a1e886b228e7da5301e5c0f5011316f2d6" }
zune-jpeg = "0.3.17"
gifed = { path = "../../gifed/gifed" }
|