1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 09:18:26 +00:00

[awc] change client::Connect to be public (#2690)

This commit is contained in:
Joel Wurtz 2023-02-09 10:32:04 +01:00 committed by GitHub
parent 359d5d5c80
commit bf1f169be2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,8 @@
# Changes
## Unreleased - 2022-xx-xx
## Unreleased - 2023-xx-xx
### Changed
- `client::Connect` is now public to allow tunneling connection with `client::Connector`.
## 3.1.0 - 2023-01-21

View file

@ -139,7 +139,7 @@ pub mod http {
}
pub use self::builder::ClientBuilder;
pub use self::client::{Client, Connector};
pub use self::client::{Client, Connect, Connector};
pub use self::connect::{BoxConnectorService, BoxedSocket, ConnectRequest, ConnectResponse};
pub use self::frozen::{FrozenClientRequest, FrozenSendBuilder};
pub use self::request::ClientRequest;