Rename module

This commit is contained in:
Dominik Werder
2024-04-29 11:34:54 +02:00
parent 78403b2537
commit 879b85d210
10 changed files with 16 additions and 11 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
use crate::cbor::CborBytes;
use crate::cbor_stream::CborBytes;
use futures_util::future;
use futures_util::Stream;
use futures_util::StreamExt;
+1 -1
View File
@@ -1,4 +1,4 @@
use crate::cbor::SitemtyDynEventsStream;
use crate::cbor_stream::SitemtyDynEventsStream;
use bytes::Bytes;
use err::Error;
use futures_util::Stream;
+1 -1
View File
@@ -1,5 +1,5 @@
pub mod boxed;
pub mod cbor;
pub mod cbor_stream;
pub mod collect;
pub mod dtflags;
pub mod filechunkread;
+2 -2
View File
@@ -1,5 +1,5 @@
use crate::cbor::events_stream_to_cbor_stream;
use crate::cbor::CborStream;
use crate::cbor_stream::events_stream_to_cbor_stream;
use crate::cbor_stream::CborStream;
use crate::firsterr::non_empty;
use crate::firsterr::only_first_err;
use crate::plaineventsstream::dyn_events_stream;
+1 -1
View File
@@ -1,4 +1,4 @@
use crate::cbor::FramedBytesToSitemtyDynEventsStream;
use crate::cbor_stream::FramedBytesToSitemtyDynEventsStream;
use crate::firsterr::only_first_err;
use crate::frames::inmem::BoxedBytesStream;
use crate::lenframed;