From d3689584d2ea206237c8dc268c3415ad6119673e Mon Sep 17 00:00:00 2001 From: Darius Clark Date: Fri, 5 Jul 2024 15:02:00 -0400 Subject: [PATCH] chore: update example --- examples/block_exchange.rs | 2 +- examples/dag_creation.rs | 2 +- examples/pubsub.rs | 2 +- examples/repo_dag.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/block_exchange.rs b/examples/block_exchange.rs index ac2fe6d53..20d14d584 100644 --- a/examples/block_exchange.rs +++ b/examples/block_exchange.rs @@ -1,4 +1,4 @@ -use libipld::ipld; +use ipld_core::ipld; use rust_ipfs::IpfsPath; use rust_ipfs::UninitializedIpfsNoop as UninitializedIpfs; diff --git a/examples/dag_creation.rs b/examples/dag_creation.rs index e7bc89c01..e6e2c1a29 100644 --- a/examples/dag_creation.rs +++ b/examples/dag_creation.rs @@ -1,4 +1,4 @@ -use libipld::ipld; +use ipld_core::ipld; use rust_ipfs::{Ipfs, IpfsPath}; use rust_ipfs::UninitializedIpfsNoop as UninitializedIpfs; diff --git a/examples/pubsub.rs b/examples/pubsub.rs index d70766787..82c95043e 100644 --- a/examples/pubsub.rs +++ b/examples/pubsub.rs @@ -1,6 +1,6 @@ use clap::Parser; use futures::{pin_mut, FutureExt}; -use libipld::ipld; +use ipld_core::ipld; use libp2p::futures::StreamExt; use libp2p::Multiaddr; use rust_ipfs::p2p::MultiaddrExt; diff --git a/examples/repo_dag.rs b/examples/repo_dag.rs index d7e50672c..77015876b 100644 --- a/examples/repo_dag.rs +++ b/examples/repo_dag.rs @@ -1,4 +1,4 @@ -use libipld::ipld; +use ipld_core::ipld; use rust_ipfs::dag::IpldDag; use rust_ipfs::repo::Repo; use rust_ipfs::IpfsPath;