-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
48 lines (42 loc) · 1.42 KB
/
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
41
42
43
44
45
46
47
workspace = { members = ["app", "fuzz"] }
[package]
name = "yuvutils-rs"
version = "0.5.15"
edition = "2021"
description = "High performance utilities for YUV format handling and conversion."
readme = "README.md"
keywords = ["yuv", "ycbcr", "yuv2rgb", "rgb2yuv", "converter"]
license = "BSD-3-Clause OR Apache-2.0"
authors = ["Radzivon Bartoshyk"]
documentation = "https://github.com/awxkee/yuvutils-rs"
categories = ["multimedia::images", "multimedia::video"]
homepage = "https://github.com/awxkee/yuvutils-rs"
repository = "https://github.com/awxkee/yuvutils-rs"
exclude = ["*.jpg", "assets/*", "*.png", "assets/bench.jpg"]
rust-version = "1.82.0"
[dependencies]
num-traits = "0.2.19"
rayon = { version = "1.10.0", optional = true }
fast_transpose = "0.2.2"
[dev-dependencies]
rand = "0.8.5"
[features]
default = ["avx", "sse", "rdm"]
# On x86 architectures runtime dispatch is used to detect if AVX, SSE is available
# disable those features only for testing or reducing binary size, if you're sure that your hardware
# do not support it or already shadowed by another feature.
# It is safe to enable any features because all features will be checked at runtime.
avx = []
sse = []
rdm = []
nightly_f16 = []
nightly_avx512 = ["fast_transpose/nightly_avx512"]
nightly_i8mm = []
fast_mode = []
professional_mode = []
rayon = ["dep:rayon"]
[profile.dev.package]
miniz_oxide.opt-level = 3
png.opt-level = 3
flate2.opt-level = 3
image.opt-level = 3