diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2021-04-05 12:34:44 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2021-04-05 12:34:44 +0200 |
commit | c1e14623891356ce5b2c79666a2d5c38b220764b (patch) | |
tree | 08d166a6be0c074d1cb5ac211df51b0dd35889d4 | |
parent | fd8666bc8f48fd374571368cd4b9a0a42e3ea85b (diff) | |
download | nihav-c1e14623891356ce5b2c79666a2d5c38b220764b.tar.gz |
make tests that rely on external demuxers use only those from external crates
-rw-r--r-- | nihav-commonfmt/Cargo.toml | 2 | ||||
-rw-r--r-- | nihav-duck/Cargo.toml | 2 | ||||
-rw-r--r-- | nihav-game/Cargo.toml | 2 | ||||
-rw-r--r-- | nihav-indeo/Cargo.toml | 2 | ||||
-rw-r--r-- | nihav-itu/Cargo.toml | 2 | ||||
-rw-r--r-- | nihav-qt/Cargo.toml | 2 |
6 files changed, 6 insertions, 6 deletions
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"] |