libblur 0.23.1

Fast image blurring in pure 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"
rust-version = "1.82.0"
name = "libblur"
version = "0.23.1"
authors = ["Radzivon Bartoshyk"]
build = false
exclude = [
    "*.jpg",
    "./assets/*",
    "*.png",
]
include = [
    "/src/",
    "/README.md",
    "/LICENSE.md",
    "/LICENSE-APACHE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast image blurring in pure Rust"
homepage = "https://github.com/awxkee/libblur"
documentation = "https://github.com/awxkee/libblur"
readme = "README.md"
keywords = [
    "blur",
    "gauss_blur",
    "image_blur",
    "fast_blur",
    "stack_blur",
]
categories = [
    "multimedia::images",
    "multimedia::video",
    "algorithms",
]
license = "Apache-2.0 OR BSD-3-Clause"
repository = "https://github.com/awxkee/libblur.git"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
avx = ["zaft?/avx"]
default = [
    "avx",
    "sse",
    "rdm",
    "neon",
]
fft = ["dep:zaft"]
image = ["dep:image"]
neon = ["zaft?/neon"]
nightly_avx512 = []
nightly_f16 = []
nightly_fcma = ["zaft?/fcma"]
rdm = ["neon"]
sse = []

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

[dependencies.image]
version = "0.25"
optional = true
default-features = false

[dependencies.novtb]
version = "^0.1.7"

[dependencies.num-complex]
version = "0.4"

[dependencies.num-traits]
version = "0.2"

[dependencies.rayon]
version = "1.10"

[dependencies.zaft]
version = "0.3"
optional = true
default-features = false

[profile.profiling]
debug = 2
inherits = "release"