bgone 0.1.0

Ultra-fast CLI tool for removing solid background colors from images
Documentation
[[bin]]
name = "bgone"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.image]
version = "0.25"

[dependencies.indicatif]
features = ["rayon"]
version = "0.18"

[dependencies.nalgebra]
version = "0.34"

[dependencies.rayon]
version = "1.10"

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.0"

[dev-dependencies.tempfile]
version = "3.8"

[lib]
name = "bgone"
path = "src/lib.rs"

[package]
authors = ["Benface <benoit@benface.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "graphics", "multimedia::images"]
description = "Ultra-fast CLI tool for removing solid background colors from images"
edition = "2021"
homepage = "https://github.com/benface/bgone"
keywords = ["image", "background", "removal", "cli", "graphics"]
license = "MIT"
name = "bgone"
readme = "README.md"
repository = "https://github.com/benface/bgone"
version = "0.1.0"

[[test]]
name = "color_deduction_tests"
path = "tests/color_deduction_tests.rs"

[[test]]
name = "generate_fixtures"
path = "tests/generate_fixtures.rs"

[[test]]
name = "non_strict_tests"
path = "tests/non_strict_tests.rs"

[[test]]
name = "strict_tests"
path = "tests/strict_tests.rs"