1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-01-02 21:38:46 +00:00

Merge pull request #1525 from JohnTitor/deps

Update dependencies
This commit is contained in:
Yuki Okushi 2020-05-21 11:58:59 +09:00 committed by GitHub
commit 184683a698
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 5 deletions

View file

@ -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

View file

@ -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"

View file

@ -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

View file

@ -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 }

View file

@ -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

View file

@ -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"