h264: add SIMD optimisations for x86_64 (not enabled by default)
[nihav.git] / nihav-itu / Cargo.toml
CommitLineData
696e4e20
KS
1[package]
2name = "nihav_itu"
3version = "0.1.0"
4authors = ["Kostya Shishkov <kostya.shishkov@gmail.com>"]
5edition = "2018"
6
7[dependencies.nihav_core]
8path = "../nihav-core"
9
10[dependencies.nihav_codec_support]
11path = "../nihav-codec-support"
12
13[dev-dependencies]
c1e14623 14nihav_commonfmt = { path = "../nihav-commonfmt", default-features=false, features = ["all_demuxers"] }
696e4e20
KS
15
16[features]
17default = ["all_decoders"]
42005e25 18simd = [] #enable when the default rustc is >=1.62
696e4e20
KS
19
20all_decoders = ["all_video_decoders"]
21decoders = []
22
23all_video_decoders = ["decoder_h264"]
24decoder_h264 = ["decoders"]