From: Kostya Shishkov Date: Thu, 20 Feb 2020 10:36:58 +0000 (+0100) Subject: update for new nihav_registry crate X-Git-Url: https://git.nihav.org/?p=nihav-tool.git;a=commitdiff_plain;h=7d08c359b21e4d4628e2edf1471d51265958c307;ds=sidebyside update for new nihav_registry crate --- diff --git a/Cargo.toml b/Cargo.toml index f94d08d..2cbd17e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,4 +6,5 @@ edition = "2018" [dependencies] nihav_core = { path="../nihav-core" } +nihav_registry = { path="../nihav-registry" } nihav_allstuff = { path="../nihav-allstuff" } diff --git a/src/main.rs b/src/main.rs index 784fccb..1541b18 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,5 @@ extern crate nihav_core; +extern crate nihav_registry; extern crate nihav_allstuff; use std::io::SeekFrom; @@ -8,7 +9,7 @@ use nihav_core::io::byteio::{FileReader, ByteReader}; use nihav_core::frame::*; use nihav_core::codecs::*; use nihav_core::demuxers::*; -use nihav_core::detect; +use nihav_registry::detect; use nihav_allstuff::*; use std::env;