mirror of
https://github.com/actix/actix-web.git
synced 2024-12-30 12:00:38 +00:00
bump version
This commit is contained in:
parent
343888017e
commit
feba5aeffd
3 changed files with 3 additions and 3 deletions
|
@ -47,7 +47,7 @@ script:
|
||||||
USE_SKEPTIC=1 cargo test --features=alpn
|
USE_SKEPTIC=1 cargo test --features=alpn
|
||||||
else
|
else
|
||||||
cargo clean
|
cargo clean
|
||||||
cargo test
|
cargo test -- --nocapture
|
||||||
# --features=alpn
|
# --features=alpn
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "actix-web"
|
name = "actix-web"
|
||||||
version = "0.4.1"
|
version = "0.4.2"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix web is a small, pragmatic, extremely fast, web framework for Rust."
|
description = "Actix web is a small, pragmatic, extremely fast, web framework for Rust."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -111,7 +111,7 @@ impl Future for SendRequest {
|
||||||
_ => IoBody::Done,
|
_ => IoBody::Done,
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut pl = Box::new(Pipeline {
|
let pl = Box::new(Pipeline {
|
||||||
body, conn, writer,
|
body, conn, writer,
|
||||||
parser: Some(HttpResponseParser::default()),
|
parser: Some(HttpResponseParser::default()),
|
||||||
parser_buf: BytesMut::new(),
|
parser_buf: BytesMut::new(),
|
||||||
|
|
Loading…
Reference in a new issue