Skip to content

Commit 20e4b36

Browse files
chore(quic): remove deprecated symbols
Pull-Request: #4738.
1 parent 29d405d commit 20e4b36

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

transports/quic/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
- Improve hole-punch timing.
44
This should improve success rates for hole-punching QUIC connections.
55
See [PR 4549](https://github.com/libp2p/rust-libp2p/pull/4549).
6+
- Remove deprecated `Error::EndpointDriverCrashed` variant.
7+
See [PR 4738](https://github.com/libp2p/rust-libp2p/pull/4738).
68

79
## 0.9.3
810

transports/quic/src/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,6 @@ pub enum Error {
9090
#[error(transparent)]
9191
Io(#[from] std::io::Error),
9292

93-
/// The task to drive a quic endpoint has crashed.
94-
#[deprecated(since = "0.9.3", note = "No longer emitted")]
95-
#[error("Endpoint driver crashed")]
96-
EndpointDriverCrashed,
97-
9893
/// The [`Connecting`] future timed out.
9994
#[error("Handshake with the remote timed out.")]
10095
HandshakeTimedOut,

0 commit comments

Comments
 (0)