-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
40 lines (34 loc) · 962 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
[package]
authors = ["Kornel Lesiński <kornel@geekhood.net>"]
categories = ["multimedia::images"]
description = "Smart filter to remove Floyd-Steinberg dithering from paletted images"
documentation = "https://docs.rs/undither"
homepage = "https://lib.rs/crates/undither"
license = "GPL-3.0+"
name = "undither"
readme = "README.md"
repository = "https://github.com/kornelski/undither.git"
version = "1.0.8"
edition = "2021"
keywords = ["dithering", "floyd-steinberg", "smart", "blur", "filter"]
[[bin]]
doc = false
name = "undither"
path = "src/bin.rs"
required-features = ["binary"]
[dependencies]
imgref = "1.10.0"
itertools = "0.12.0"
loop9 = "0.1.4"
rgb = "0.8.37"
vpsearch = "2.0.1"
[dependencies.lodepng]
optional = true
version = "3.9.1"
[features]
binary = ["dep:lodepng"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]
[badges]
maintenance = { status = "passively-maintained" }