sharpy 0.2.1

High-performance image sharpening library for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "sharpy"
version = "0.2.1"
authors = ["Max Enko <max@bigmail.one>"]
build = false
exclude = [
    "plan/",
    "sharpy-gui/",
    ".github/",
    ".claude/",
    ".idea/",
    "ignored.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance image sharpening library for Rust"
readme = "README.md"
keywords = [
    "image",
    "sharpening",
    "image-processing",
    "graphics",
    "filter",
]
categories = [
    "multimedia::images",
    "multimedia::encoding",
]
license = "MIT"
repository = "https://github.com/maxenko/sharpy"

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

[[bin]]
name = "sharpy"
path = "src/bin/sharpy.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "builder"
path = "examples/builder.rs"

[[example]]
name = "compare_methods"
path = "examples/compare_methods.rs"

[[example]]
name = "presets"
path = "examples/presets.rs"

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

[[bench]]
name = "sharpening"
path = "benches/sharpening.rs"
harness = false

[dependencies.anyhow]
version = "1.0"

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

[dependencies.glob]
version = "0.3"

[dependencies.image]
version = "0.25"

[dependencies.indicatif]
version = "0.18"

[dependencies.rayon]
version = "1.10"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]