forked from aws/dcv-color-primitives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (35 loc) · 1.04 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
[package]
name = "dcv-color-primitives"
version = "0.7.0"
edition = "2018"
rust-version = "1.70"
description = "a library to perform image color model conversion"
license = "MIT-0"
repository = "https://github.com/aws/dcv-color-primitives"
authors = ["Fabio Lagalla <[email protected]>"]
readme = "README.md"
keywords = ["colors", "converter", "rgb", "yuv", "video"]
categories = ["graphics"]
[lib]
name = "dcv_color_primitives"
crate-type = ["staticlib", "rlib"]
[dependencies]
paste = "1.0"
[dev-dependencies]
criterion = {version = "0.3", features = ["html_reports"]}
itertools = "0.13"
rand = "0.8"
[target.'cfg(target_os="linux")'.dev-dependencies]
perf-event = "0.4.6"
[[bench]]
name = "benches"
harness = false
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3"
getrandom = { version = "0.2", features = ["js"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
[features]
test_instruction_sets = []
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }