public interface for chromaton creation
[nihav.git] / nihav-game / Cargo.toml
CommitLineData
5641dccf
KS
1[package]
2name = "nihav_game"
3version = "0.1.0"
4authors = ["Kostya Shishkov <kostya.shishkov@gmail.com>"]
5edition = "2018"
6
7[dependencies.nihav_core]
8path = "../nihav-core"
9features = []
10
11[features]
12default = ["all_decoders", "all_demuxers"]
13demuxers = []
14all_demuxers = ["demuxer_gdv"]
15demuxer_gdv = ["demuxers"]
16
17all_decoders = ["all_video_decoders", "all_audio_decoders"]
18decoders = []
19
20all_video_decoders = ["decoder_gdvvid"]
21decoder_gdvvid = ["decoders"]
22
23all_audio_decoders = []