-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (24 loc) · 841 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "convolve-image"
version = "0.4.0"
edition = "2021"
authors = ["Anshul Sanghi <[email protected]>"]
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"]