split NihAV into subcrates
[nihav.git] / nihav-game / Cargo.toml
1 [package]
2 name = "nihav_game"
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 features = []
10
11 [features]
12 default = ["all_decoders", "all_demuxers"]
13 demuxers = []
14 all_demuxers = ["demuxer_gdv"]
15 demuxer_gdv = ["demuxers"]
16
17 all_decoders = ["all_video_decoders", "all_audio_decoders"]
18 decoders = []
19
20 all_video_decoders = ["decoder_gdvvid"]
21 decoder_gdvvid = ["decoders"]
22
23 all_audio_decoders = []