libblur 0.24.0

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 = "2024"
rust-version = "1.89.0"
name = "libblur"
version = "0.24.0"
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 = []
avx512 = []
default = [
    "avx",
    "sse",
    "rdm",
    "neon",
]
fft = ["dep:zaft"]
image = ["dep:image"]
neon = []
nightly_f16 = []
nightly_fcma = ["zaft?/fcma"]
rdm = ["neon"]
sse = []
sve = ["neon"]

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

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

[dependencies.novtb]
version = "0.1.13"

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

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

[dependencies.rayon]
version = "1.10"

[dependencies.zaft]
version = "0.3.6"
optional = true

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