-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
40 lines (34 loc) · 832 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
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "imgproc-rs"
version = "0.3.0"
edition = "2018"
license = "MIT"
description = "Image processing library for Rust"
authors = ["Tiffany Chieu <[email protected]>"]
readme = "README.md"
repository = "https://github.com/tiffany1618/imgproc-rs"
homepage = "https://github.com/tiffany1618/imgproc-rs"
documentation = "https://docs.rs/imgproc-rs"
exclude = [
"tests/*",
"benches/*",
"images/*"
]
keywords = ["image", "image-processing"]
categories = ["multimedia::images"]
[dependencies]
image = "0.23.12"
rayon = { version = "1.5.0", optional = true }
rulinalg = "0.4.2"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "imgproc_bench"
path = "benches/imgproc_bench.rs"
harness = false
[features]
default = ["simd"]
# Enables multithreading
parallel = ["rayon"]
# Enables SIMD support
simd = []