Skip to content

Commit 06c4d8e

Browse files
authored
chore: upgrade to iroh v0.32.0 (#105)
* chore: upgrade to `iroh` v0.32.0 * chore: upgrade to `iroh-blobs` and `iroh-docs` 0.32.0
1 parent 76cc4ea commit 06c4d8e

File tree

18 files changed

+4007
-2860
lines changed

18 files changed

+4007
-2860
lines changed

dumbpipe-web/Cargo.lock

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

dumbpipe-web/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ license = "Apache-2.0/MIT"
1010
anyhow = "1.0.75"
1111
bytes = "1.5.0"
1212
clap = { version = "4.4.11", features = ["derive"] }
13-
dumbpipe = "0.23"
13+
dumbpipe = "0.24"
1414
http = "1.0.0"
1515
http-body-util = "0.1.0"
1616
hyper = { version = "1.0.1", features = ["full"] }
1717
hyper-util = { version = "0.1.1", features = ["full"] }
18-
iroh = "0.31"
19-
iroh-quinn = "0.12.0"
18+
iroh = "0.32"
2019
rand = "0.8.5"
2120
tokio = { version = "1.34.0", features = ["full"] }
2221
tracing = "0.1.40"

dumbpipe-web/src/quinn_endpoint.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! QuinnEndpoint is a wrapper around a quinn::SendStream and quinn::RecvStream
22
//!
33
//! It implements AsyncRead and AsyncWrite so it can be used with tokio::io::copy
4-
use iroh_quinn::{RecvStream, SendStream};
4+
use iroh::endpoint::{RecvStream, SendStream};
55
use std::pin::Pin;
66
use std::task::{Context, Poll};
77
use tokio::io::{AsyncRead, AsyncWrite, ReadBuf};

0 commit comments

Comments
 (0)