aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-pds/src/vendored/iroh_car/reader.rs
diff options
context:
space:
mode:
Diffstat (limited to 'adenosine-pds/src/vendored/iroh_car/reader.rs')
-rw-r--r--adenosine-pds/src/vendored/iroh_car/reader.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/adenosine-pds/src/vendored/iroh_car/reader.rs b/adenosine-pds/src/vendored/iroh_car/reader.rs
index c0209be..916f27e 100644
--- a/adenosine-pds/src/vendored/iroh_car/reader.rs
+++ b/adenosine-pds/src/vendored/iroh_car/reader.rs
@@ -1,8 +1,8 @@
-use cid::Cid;
use futures::Stream;
+use libipld::Cid;
use tokio::io::AsyncRead;
-use crate::{
+use super::{
error::Error,
header::CarHeader,
util::{ld_read, read_node},
@@ -61,12 +61,12 @@ where
mod tests {
use std::io::Cursor;
- use cid::Cid;
use futures::TryStreamExt;
- use ipld_cbor::DagCborCodec;
+ use libipld::cbor::DagCborCodec;
+ use libipld::Cid;
use multihash::MultihashDigest;
- use crate::{header::CarHeaderV1, writer::CarWriter};
+ use super::super::{header::CarHeaderV1, writer::CarWriter};
use super::*;