Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions h3-iroh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ http-body = { version = "1", optional = true }
http-body-util = { version = "0.1", optional = true }
hyper = { version = "1.5", optional = true }
hyper-util = { version = "0.1", optional = true }
iroh = "0.94"
iroh-tickets = "0.1"
iroh = "0.95"
iroh-tickets = "0.2"
tokio = { version = "1", features = ["io-util"], default-features = false}
tokio-util = "0.7"
tower = { version = "0.5", optional = true }
Expand Down
10 changes: 5 additions & 5 deletions iroh-dag-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ version = "0.1.0"
edition = "2021"

[dependencies]
iroh-blobs = "0.96"
iroh-gossip = "0.94"
iroh = "0.94"
iroh-tickets = "0.1"
iroh-blobs = "0.97"
iroh-gossip = "0.95"
iroh = "0.95"
iroh-tickets = "0.2"
iroh-car = "0.5"
redb = "2.6"
clap = { version = "4.5.7", features = ["derive"] }
Expand All @@ -19,7 +19,7 @@ serde = { version = "1.0.203", features = ["derive"] }
futures-lite = "2.3.0"
iroh-io = "0.6"
tokio-util = { version = "0.7.11", features = ["rt"] }
bao-tree = "0.15.1"
bao-tree = "0.16.0"
genawaiter = "0.99.1"
bytes = "1.6.0"
hex = "0.4.3"
Expand Down
10 changes: 5 additions & 5 deletions iroh-dag-sync/src/sync.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use anyhow::Context;
use bao_tree::{io::outboard::EmptyOutboard, BaoTree, ChunkRanges};
use iroh::endpoint::{Connecting, RecvStream, SendStream};
use iroh::endpoint::{Accepting, RecvStream, SendStream};
use iroh_blobs::store::{fs::FsStore, IROH_BLOCK_SIZE};
use iroh_io::{TokioStreamReader, TokioStreamWriter};
use multihash_codetable::MultihashDigest;
Expand All @@ -15,15 +15,15 @@ use crate::{
const MAX_REQUEST_SIZE: usize = 1024 * 1024 * 16;

pub async fn handle_request(
mut connecting: Connecting,
mut accepting: Accepting,
tables: &impl ReadableTables,
blobs: &FsStore,
) -> anyhow::Result<()> {
tracing::info!(
"got connecting, {:?}",
std::str::from_utf8(&connecting.alpn().await?)
"got accepting, {:?}",
std::str::from_utf8(&accepting.alpn().await?)
);
let connection = connecting.await?;
let connection = accepting.await?;
tracing::info!("got connection, waiting for request");
let (mut send, mut recv) = connection.accept_bi().await?;
tracing::info!("got request stream");
Expand Down
4 changes: 2 additions & 2 deletions iroh-pkarr-naming-system/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ edition = "2021"
[dependencies]
anyhow = "1.0.79"
derive_more = "2.0"
iroh = "0.94"
iroh-blobs = "0.96"
iroh = "0.95"
iroh-blobs = "0.97"
pkarr = { version = "5", features = ["dht"] }
tokio = "1.35.1"
tokio-util = "0.7.12"
Expand Down
Loading