Skip to content

Commit

Permalink
Fix lack of reexport of ConnectionStats and ResetError (#1920)
Browse files Browse the repository at this point in the history
  • Loading branch information
TirushOne committed Jul 17, 2024
1 parent 3f489e2 commit 411abe9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions quinn/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ mod work_limiter;

pub use proto::{
congestion, crypto, AckFrequencyConfig, ApplicationClose, Chunk, ClientConfig, ClosedStream,
ConfigError, ConnectError, ConnectionClose, ConnectionError, EndpointConfig, IdleTimeout,
MtuDiscoveryConfig, ServerConfig, StreamId, Transmit, TransportConfig, VarInt,
ConfigError, ConnectError, ConnectionClose, ConnectionError, ConnectionStats, EndpointConfig,
IdleTimeout, MtuDiscoveryConfig, ServerConfig, StreamId, Transmit, TransportConfig, VarInt,
};
#[cfg(feature = "rustls")]
pub use rustls;
Expand All @@ -76,7 +76,7 @@ pub use crate::connection::{
};
pub use crate::endpoint::{Accept, Endpoint};
pub use crate::incoming::{Incoming, IncomingFuture, RetryError};
pub use crate::recv_stream::{ReadError, ReadExactError, ReadToEndError, RecvStream};
pub use crate::recv_stream::{ReadError, ReadExactError, ReadToEndError, RecvStream, ResetError};
#[cfg(feature = "runtime-async-std")]
pub use crate::runtime::AsyncStdRuntime;
#[cfg(feature = "runtime-smol")]
Expand Down

0 comments on commit 411abe9

Please sign in to comment.