Skip to content

Commit

Permalink
update deps: cargo update
Browse files Browse the repository at this point in the history
  • Loading branch information
GlenDC committed Aug 29, 2024
1 parent a6cb914 commit 8918d79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/net/stream/layer/tracker/outgoing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use crate::{
net::{
client::{ClientConnection, EstablishedClientConnection},
stream::Stream,
transport::TryRefIntoTransportContext,
},
service::{Context, Layer, Service},
};
Expand Down Expand Up @@ -52,7 +51,7 @@ where
S: Service<State, Request, Response = EstablishedClientConnection<T, State, Request>>,
T: Stream + Unpin,
State: Send + Sync + 'static,
Request: TryRefIntoTransportContext<State> + Send + 'static,
Request: Send + 'static,
{
type Response = EstablishedClientConnection<BytesRWTracker<T>, State, Request>;
type Error = S::Error;
Expand Down

0 comments on commit 8918d79

Please sign in to comment.