Moved err crate

This commit is contained in:
Dominik Werder
2024-11-07 18:26:02 +01:00
parent 8fd7e72796
commit 2f89c969cd
124 changed files with 191 additions and 738 deletions

View File

@@ -17,7 +17,7 @@ chrono = "0.4"
async-channel = "1.9.0"
parking_lot = "0.12"
crc32fast = "1.2"
err = { path = "../err" }
daqbuf-err = { path = "../../../daqbuf-err" }
taskrun = { path = "../taskrun" }
netpod = { path = "../netpod" }
items_0 = { path = "../items_0" }

View File

@@ -1,6 +1,7 @@
pub mod ringbuf;
use async_channel::Sender;
use daqbuf_err as err;
use err::ErrStr;
use err::Error;
use futures_util::StreamExt;

View File

@@ -1,6 +1,7 @@
use crate::read;
use crate::seek;
use crate::StatsChannel;
use daqbuf_err as err;
use err::Error;
use netpod::log::*;
use std::borrow::BorrowMut;