[package] name = "convolve-image" version = "0.4.0" edition = "2021" authors = ["Anshul Sanghi "] description = "A small library to perform convolution operations on images with arbitrarily-sized separable kernels" homepage = "https://github.com/anshap1719/convolve-image" repository = "https://github.com/anshap1719/convolve-image" keywords = ["image", "convolution", "kernel", "analysis"] categories = ["multimedia"] license = "Apache-2.0" readme = "./README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] image = { version = "0.25.1", optional = true } ndarray = { version = "0.15.6", optional = true } [profile.release] lto = true codegen-units = 1 panic = "abort" opt-level = 3 [features] image = ["dep:image"] ndarray = ["dep:ndarray"]