diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-02-20 11:35:16 +0100 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-02-20 11:35:16 +0100 |
commit | 32f7cbe538d71574f7ac05aa51599d2678f5db3f (patch) | |
tree | 27ada919c11200139c5fee4f2f299dde373476fa /nihav-commonfmt | |
parent | b4d5b8515e75383b4fc59ea2813c90c615d59a96 (diff) | |
download | nihav-32f7cbe538d71574f7ac05aa51599d2678f5db3f.tar.gz |
split nihav-registry from nihav-core
Diffstat (limited to 'nihav-commonfmt')
-rw-r--r-- | nihav-commonfmt/Cargo.toml | 3 | ||||
-rw-r--r-- | nihav-commonfmt/src/demuxers/avi.rs | 2 | ||||
-rw-r--r-- | nihav-commonfmt/src/lib.rs | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/nihav-commonfmt/Cargo.toml b/nihav-commonfmt/Cargo.toml index 396f189..5c0b460 100644 --- a/nihav-commonfmt/Cargo.toml +++ b/nihav-commonfmt/Cargo.toml @@ -7,6 +7,9 @@ edition = "2018" [dependencies.nihav_core] path = "../nihav-core" +[dependencies.nihav_registry] +path = "../nihav-registry" + [dependencies.nihav_codec_support] path = "../nihav-codec-support" features = ["h263", "mdct", "fft", "dsp_window"] diff --git a/nihav-commonfmt/src/demuxers/avi.rs b/nihav-commonfmt/src/demuxers/avi.rs index ec326ff..9b53d14 100644 --- a/nihav-commonfmt/src/demuxers/avi.rs +++ b/nihav-commonfmt/src/demuxers/avi.rs @@ -1,5 +1,5 @@ use nihav_core::demuxers::*; -use nihav_core::register; +use nihav_registry::register; use nihav_core::demuxers::DemuxerError::*; macro_rules! mktag { diff --git a/nihav-commonfmt/src/lib.rs b/nihav-commonfmt/src/lib.rs index cdb70ec..7896f12 100644 --- a/nihav-commonfmt/src/lib.rs +++ b/nihav-commonfmt/src/lib.rs @@ -1,5 +1,6 @@ extern crate nihav_core; extern crate nihav_codec_support; +extern crate nihav_registry; #[cfg(feature="decoders")] #[allow(clippy::unreadable_literal)] |