-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
41 lines (35 loc) · 986 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
41
[package]
name = "yuvxyb"
description = "Conversions between YUV (YCbCr), XYB, and other colorspaces"
version = "0.4.0"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/yuvxyb"
homepage = "https://github.com/rust-av/yuvxyb"
repository = "https://github.com/rust-av/yuvxyb"
exclude = ["test_data", "yuvxyb-dump"]
# When changing MSRV: Also update README and .github/workflows/crate.yml
rust-version = "1.64.0"
[features]
default = ["fastmath"]
fastmath = []
[dependencies]
av-data = "0.4.2"
log = "0.4.17"
num-traits = "0.2.15"
paste = "1.0.9"
thiserror = "1.0.40"
v_frame = "0.3.8"
[dependencies.nalgebra]
version = "0.32.2"
# The default features include macros that we don't need
default-features = false
features = ["std"]
[dev-dependencies]
criterion = { version = "0.5", default-features = false }
image = { version = "0.25", default-features = false, features = ["png"] }
interpolate_name = "0.2.3"
rand = "0.8.5"
[[bench]]
name = "benches"
harness = false