fast-canny 0.1.0

Industrial-grade Zero-Allocation SIMD Canny Edge Detector
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"
name = "fast-canny"
version = "0.1.0"
authors = ["Paul Zhang"]
build = false
exclude = [
    ".gitignore",
    ".cargo/config.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Industrial-grade Zero-Allocation SIMD Canny Edge Detector"
documentation = "https://docs.rs/fast-canny"
readme = "README.md"
keywords = [
    "image-processing",
    "canny",
    "edge-detection",
    "simd",
    "computer-vision",
]
categories = [
    "multimedia::images",
    "algorithms",
    "science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/paulzhang5511/fast-canny"

[lib]
name = "fast_canny"
crate-type = [
    "rlib",
    "cdylib",
]
path = "src/lib.rs"

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

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

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

[dependencies.bumpalo]
version = "3.16"
features = ["collections"]

[dependencies.bytemuck]
version = "1.15"

[dependencies.libblur]
version = "0.23.3"

[dependencies.log]
version = "0.4"

[dependencies.rayon]
version = "1.10"

[dev-dependencies.env_logger]
version = "0.11"

[dev-dependencies.image]
version = "0.25"

[target.'cfg(target_arch = "aarch64")'.dependencies]

[target.'cfg(target_arch = "x86_64")'.dependencies]

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true