mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
fix awc changelog
This commit is contained in:
parent
ab5eb7c1aa
commit
bcbbc115aa
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@ -159,7 +159,7 @@ jobs:
|
|||||||
with: { file: cobertura.xml }
|
with: { file: cobertura.xml }
|
||||||
|
|
||||||
rustdoc:
|
rustdoc:
|
||||||
name: rustdoc
|
name: doc tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -177,12 +177,6 @@ jobs:
|
|||||||
- name: Cache Dependencies
|
- name: Cache Dependencies
|
||||||
uses: Swatinem/rust-cache@v1.3.0
|
uses: Swatinem/rust-cache@v1.3.0
|
||||||
|
|
||||||
# - name: Install cargo-hack
|
|
||||||
# uses: actions-rs/cargo@v1
|
|
||||||
# with:
|
|
||||||
# command: install
|
|
||||||
# args: cargo-hack
|
|
||||||
|
|
||||||
- name: doc tests
|
- name: doc tests
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
|
|
||||||
## 3.0.0-beta.11 - 2021-11-22
|
## 3.0.0-beta.11 - 2021-11-22
|
||||||
|
* No significant changes from `3.0.0-beta.10`.
|
||||||
|
|
||||||
|
|
||||||
## 3.0.0-beta.10 - 2021-11-15
|
## 3.0.0-beta.10 - 2021-11-15
|
||||||
|
@ -1,18 +1,16 @@
|
|||||||
use std::convert::TryFrom;
|
use std::{convert::TryFrom, fmt, net::IpAddr, rc::Rc, time::Duration};
|
||||||
use std::fmt;
|
|
||||||
use std::net::IpAddr;
|
|
||||||
use std::rc::Rc;
|
|
||||||
use std::time::Duration;
|
|
||||||
|
|
||||||
use actix_http::http::{self, header, Error as HttpError, HeaderMap, HeaderName, Uri};
|
use actix_http::http::{self, header, Error as HttpError, HeaderMap, HeaderName, Uri};
|
||||||
use actix_rt::net::{ActixStream, TcpStream};
|
use actix_rt::net::{ActixStream, TcpStream};
|
||||||
use actix_service::{boxed, Service};
|
use actix_service::{boxed, Service};
|
||||||
|
|
||||||
use crate::client::{Connector, ConnectorService, TcpConnect, TcpConnectError, TcpConnection};
|
use crate::{
|
||||||
use crate::connect::DefaultConnector;
|
client::{Connector, ConnectorService, TcpConnect, TcpConnectError, TcpConnection},
|
||||||
use crate::error::SendRequestError;
|
connect::DefaultConnector,
|
||||||
use crate::middleware::{NestTransform, Redirect, Transform};
|
error::SendRequestError,
|
||||||
use crate::{Client, ClientConfig, ConnectRequest, ConnectResponse};
|
middleware::{NestTransform, Redirect, Transform},
|
||||||
|
Client, ClientConfig, ConnectRequest, ConnectResponse,
|
||||||
|
};
|
||||||
|
|
||||||
/// An HTTP Client builder
|
/// An HTTP Client builder
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user