From: Kostya Shishkov Date: Mon, 5 Apr 2021 10:34:44 +0000 (+0200) Subject: make tests that rely on external demuxers use only those from external crates X-Git-Url: https://git.nihav.org/?p=nihav.git;a=commitdiff_plain;h=c1e14623891356ce5b2c79666a2d5c38b220764b make tests that rely on external demuxers use only those from external crates --- diff --git a/nihav-commonfmt/Cargo.toml b/nihav-commonfmt/Cargo.toml index 3edd03a..f497d16 100644 --- a/nihav-commonfmt/Cargo.toml +++ b/nihav-commonfmt/Cargo.toml @@ -15,7 +15,7 @@ path = "../nihav-codec-support" features = ["h263", "mdct", "fft", "dsp_window", "vq"] [dev-dependencies] -nihav_realmedia = { path = "../nihav-realmedia" } +nihav_realmedia = { path = "../nihav-realmedia", default-features=false, features = ["all_demuxers"] } [features] default = ["all_decoders", "all_demuxers", "all_encoders", "all_muxers"] diff --git a/nihav-duck/Cargo.toml b/nihav-duck/Cargo.toml index c5c65d2..c3ae925 100644 --- a/nihav-duck/Cargo.toml +++ b/nihav-duck/Cargo.toml @@ -12,7 +12,7 @@ path = "../nihav-codec-support" features = ["fft", "dsp_window", "blockdsp"] [dev-dependencies] -nihav_commonfmt = { path = "../nihav-commonfmt" } +nihav_commonfmt = { path = "../nihav-commonfmt", default-features=false, features = ["all_demuxers"] } [features] default = ["all_decoders"] diff --git a/nihav-game/Cargo.toml b/nihav-game/Cargo.toml index d1f9c24..c06e8f0 100644 --- a/nihav-game/Cargo.toml +++ b/nihav-game/Cargo.toml @@ -13,7 +13,7 @@ path = "../nihav-codec-support" features = ["qmf"] [dev-dependencies] -nihav_commonfmt = { path = "../nihav-commonfmt" } +nihav_commonfmt = { path = "../nihav-commonfmt", default-features=false, features = ["all_demuxers"] } [features] default = ["all_decoders", "all_demuxers"] diff --git a/nihav-indeo/Cargo.toml b/nihav-indeo/Cargo.toml index ffa8390..5b98dd1 100644 --- a/nihav-indeo/Cargo.toml +++ b/nihav-indeo/Cargo.toml @@ -12,7 +12,7 @@ path = "../nihav-codec-support" features = ["h263", "fft", "dsp_window"] [dev-dependencies] -nihav_commonfmt = { path = "../nihav-commonfmt" } +nihav_commonfmt = { path = "../nihav-commonfmt", default-features=false, features = ["all_demuxers"] } [features] default = ["all_decoders"] diff --git a/nihav-itu/Cargo.toml b/nihav-itu/Cargo.toml index 2c5521a..8134981 100644 --- a/nihav-itu/Cargo.toml +++ b/nihav-itu/Cargo.toml @@ -11,7 +11,7 @@ path = "../nihav-core" path = "../nihav-codec-support" [dev-dependencies] -nihav_commonfmt = { path = "../nihav-commonfmt" } +nihav_commonfmt = { path = "../nihav-commonfmt", default-features=false, features = ["all_demuxers"] } [features] default = ["all_decoders"] diff --git a/nihav-qt/Cargo.toml b/nihav-qt/Cargo.toml index 3e4b653..6e0cf97 100644 --- a/nihav-qt/Cargo.toml +++ b/nihav-qt/Cargo.toml @@ -13,7 +13,7 @@ path = "../nihav-codec-support" features = ["blockdsp", "fft", "qmf"] [dev-dependencies] -nihav_commonfmt = { path = "../nihav-commonfmt" } +nihav_commonfmt = { path = "../nihav-commonfmt", default-features=false, features = ["all_demuxers"] } [features] default = ["all_decoders"]