image-anonymizer 0.2.8

A command-line tool to detect and mask sensitive content in images
Documentation
[[bin]]
name = "image-anonymizer"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.21"

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

[dependencies.dotenv]
version = "0.15.0"

[dependencies.image]
version = "0.24"

[dependencies.rayon]
version = "1.10.0"

[dependencies.reqwest]
features = ["json", "blocking", "multipart"]
version = "0.11"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

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

[package]
authors = ["Katsuhiro Honda <freewave3@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = "A command-line tool to detect and mask sensitive content in images"
edition = "2024"
keywords = ["image", "text", "masking", "privacy", "ocr"]
license = "MIT"
name = "image-anonymizer"
readme = "README.md"
repository = "https://github.com/katsuhirohonda/image-anonymizer"
version = "0.2.8"

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

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

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

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

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