mirror of
https://github.com/actix/actix-web.git
synced 2025-01-02 21:38:46 +00:00
commit
184683a698
6 changed files with 8 additions and 5 deletions
|
@ -6,9 +6,9 @@
|
|||
|
||||
* Bump minimum supported Rust version to 1.40
|
||||
* content_length function is removed, and you can set Content-Length by calling no_chunking function [#1439]
|
||||
|
||||
* `BodySize::Sized64` variant has been removed. `BodySize::Sized` now receives a
|
||||
`u64` instead of a `usize`.
|
||||
* Update `base64` dependency to 0.12
|
||||
|
||||
### Fixed
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ actix-threadpool = "0.3.1"
|
|||
actix-tls = { version = "2.0.0-alpha.1", optional = true }
|
||||
actix = { version = "0.10.0-alpha.1", optional = true }
|
||||
|
||||
base64 = "0.11"
|
||||
base64 = "0.12"
|
||||
bitflags = "1.2"
|
||||
bytes = "0.5.3"
|
||||
copyless = "0.1.4"
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
|
||||
* Implement `std::error::Error` for our custom errors [#1422]
|
||||
* Bump minimum supported Rust version to 1.40
|
||||
* Update `base64` dependency to 0.12
|
||||
|
||||
[#1422]: https://github.com/actix/actix-web/pull/1422
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ actix-service = "1.0.1"
|
|||
actix-http = "2.0.0-alpha.3"
|
||||
actix-rt = "1.0.0"
|
||||
|
||||
base64 = "0.11"
|
||||
base64 = "0.12"
|
||||
bytes = "0.5.3"
|
||||
derive_more = "0.99.2"
|
||||
futures-core = { version = "0.3.5", default-features = false }
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
* Make `test_server` `async` fn.
|
||||
* Bump minimum supported Rust version to 1.40
|
||||
* Replace deprecated `net2` crate with `socket2`
|
||||
* Update `base64` dependency to 0.12
|
||||
* Update `env_logger` dependency to 0.7
|
||||
|
||||
## [1.0.0] - 2019-12-13
|
||||
|
||||
|
|
|
@ -39,12 +39,12 @@ actix-server = "1.0.0"
|
|||
actix-testing = "1.0.0"
|
||||
awc = "2.0.0-alpha.1"
|
||||
|
||||
base64 = "0.11"
|
||||
base64 = "0.12"
|
||||
bytes = "0.5.3"
|
||||
futures-core = { version = "0.3.5", default-features = false }
|
||||
http = "0.2.0"
|
||||
log = "0.4"
|
||||
env_logger = "0.6"
|
||||
env_logger = "0.7"
|
||||
socket2 = "0.3"
|
||||
serde = "1.0"
|
||||
serde_json = "1.0"
|
||||
|
|
Loading…
Reference in a new issue