aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-itu/Cargo.toml
blob: 8badb20d49d1a9c288e8b4f48521261093a9a979 (plain) (blame)
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
[package]
name = "nihav_itu"
version = "0.1.0"
authors = ["Kostya Shishkov <kostya.shishkov@gmail.com>"]
edition = "2018"
rust-version = "1.69"

[dependencies.nihav_core]
path = "../nihav-core"

[dependencies.nihav_codec_support]
path = "../nihav-codec-support"

[dev-dependencies]
nihav_commonfmt = { path = "../nihav-commonfmt", default-features=false, features = ["all_demuxers"] }

[features]
default = ["all_decoders", "simd"]
simd = [] #enable when the default rustc is >=1.62

all_decoders = ["all_video_decoders"]
decoders = []

all_video_decoders = ["decoder_h264"]
decoder_h264 = ["decoders"]