]>
Commit | Line | Data |
---|---|---|
54915296 KS |
1 | [package] |
2 | name = "nihav_misc" | |
3 | version = "0.1.0" | |
4 | authors = ["Kostya Shishkov <kostya.shishkov@gmail.com>"] | |
5 | edition = "2018" | |
6 | ||
7 | [dependencies.nihav_core] | |
8 | path = "../nihav-core" | |
9 | ||
10 | [dependencies.nihav_codec_support] | |
11 | path = "../nihav-codec-support" | |
12 | ||
13 | [dev-dependencies] | |
14 | nihav_commonfmt = { path = "../nihav-commonfmt", default-features=false, features = ["all_demuxers"] } | |
15 | ||
16 | [features] | |
17 | default = ["all_decoders"] | |
18 | decoders = [] | |
19 | ||
20 | all_decoders = ["all_video_decoders", "all_audio_decoders"] | |
21 | ||
22 | all_video_decoders = ["decoder_mwv1"] | |
23 | decoder_mwv1 = ["decoders"] | |
24 | ||
25 | all_audio_decoders = [] |