-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 702 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 702 Bytes
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
workspace = { members = ["./src/app"] }
[package]
name = "histogram_equalization"
version = "0.2.4"
edition = "2021"
description = "Histogram equalization"
readme = "README.md"
keywords = ["histogram"]
license = "BSD-3-Clause OR Apache-2.0"
authors = ["Radzivon Bartoshyk"]
documentation = "https://github.com/awxkee/histogram_equalization"
categories = ["multimedia::images", "multimedia::video"]
homepage = "https://github.com/awxkee/histogram_equalization"
repository = "https://github.com/awxkee/histogram_equalization"
exclude = ["*.jpg", "assets/*"]
[features]
nightly_avx512 = ["yuv/nightly_avx512"]
[dependencies]
colorutils-rs = "0.7.4"
num-traits = "0.2.19"
rayon = "1.10.0"
yuv = "0.8.3"