Skip to content

Commit dfdcbd4

Browse files
committed
Update iroh-blobs deps to 0.91
1 parent 91dc50c commit dfdcbd4

File tree

3 files changed

+5
-16
lines changed

3 files changed

+5
-16
lines changed

content-discovery/Cargo.lock

Lines changed: 2 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

content-discovery/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ unused-async = "warn"
2828
[workspace.dependencies]
2929
iroh = { version ="0.90", features = ["discovery-pkarr-dht"] }
3030
iroh-base = "0.90"
31-
iroh-blobs = { version = "0.90" }
31+
iroh-blobs = { version = "0.91" }
3232
# explicitly specified until iroh minimal crates issues are solved, see https://github.com/n0-computer/iroh/pull/3255
3333
tokio = { version = "1.44.1" }
3434
tokio-stream = { version = "0.1.17" }

content-discovery/iroh-content-tracker/tests/smoke.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::{time::Duration, vec};
22

33
use iroh::{protocol::RouterBuilder, Endpoint};
4-
use iroh_blobs::{net_protocol::Blobs, store::mem::MemStore};
4+
use iroh_blobs::{store::mem::MemStore, BlobsProtocol};
55
use iroh_content_discovery::{
66
announce,
77
protocol::{AbsoluteTime, Announce, AnnounceKind, Query, QueryFlags, SignedAnnounce},
@@ -26,7 +26,7 @@ async fn smoke_test() -> anyhow::Result<()> {
2626
let accept_task = tokio::spawn(tracker.clone().accept_loop(tracker_ep.clone()));
2727
let tracker_id = tracker_ep.node_id();
2828
let store = MemStore::new();
29-
let blobs = Blobs::new(&store, provider_ep.clone(), None);
29+
let blobs = BlobsProtocol::new(&store, provider_ep.clone(), None);
3030
let provider_router = RouterBuilder::new(provider_ep.clone())
3131
.accept(iroh_blobs::ALPN, blobs.clone())
3232
.spawn();

0 commit comments

Comments
 (0)