From 7d08c359b21e4d4628e2edf1471d51265958c307 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Thu, 20 Feb 2020 11:36:58 +0100 Subject: [PATCH] update for new nihav_registry crate --- Cargo.toml | 1 + src/main.rs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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; -- 2.30.2