We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
OpenSubstreamToken
1 parent 2eca38c commit d2eddf4Copy full SHA for d2eddf4
muxers/yamux/CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
- Update to `libp2p-core` `v0.36.0`
4
5
+- Remove `OpenSubstreamToken` as it is dead code. See [PR 2873].
6
+
7
+[PR 2873]: https://github.com/libp2p/rust-libp2p/pull/2873/
8
9
# 0.39.0
10
11
- Update to `libp2p-core` `v0.35.0`
muxers/yamux/src/lib.rs
@@ -50,10 +50,6 @@ impl<S> fmt::Debug for Yamux<S> {
50
}
51
52
53
-/// A token to poll for an outbound substream.
54
-#[derive(Debug)]
55
-pub struct OpenSubstreamToken(());
56
-
57
impl<C> Yamux<Incoming<C>>
58
where
59
C: AsyncRead + AsyncWrite + Send + Unpin + 'static,
0 commit comments