bump deps

This commit is contained in:
Σrebe - Romain GERARD 2024-12-11 14:55:48 +01:00
parent 3f95842938
commit 5584972c46
No known key found for this signature in database
GPG key ID: 7A42B4B97E0332F4
3 changed files with 192 additions and 215 deletions

View file

@ -2,7 +2,6 @@ use crate::protocols;
use crate::protocols::tls;
use crate::tunnel::client::l4_transport_stream::TransportStream;
use crate::tunnel::client::WsClientConfig;
use async_trait::async_trait;
use bb8::ManageConnection;
use bytes::Bytes;
use std::ops::Deref;
@ -26,7 +25,6 @@ impl Deref for WsConnection {
}
}
#[async_trait]
impl ManageConnection for WsConnection {
type Connection = Option<TransportStream>;
type Error = anyhow::Error;