1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-31 11:02:08 +01:00

test-server: Update dependencies

This commit is contained in:
Yuki Okushi 2020-05-21 09:52:15 +09:00
parent 603973dede
commit 6c78f57a70
No known key found for this signature in database
GPG Key ID: B0986C85C0E2DAA1
2 changed files with 4 additions and 2 deletions

View File

@ -7,6 +7,8 @@
* Make `test_server` `async` fn. * Make `test_server` `async` fn.
* Bump minimum supported Rust version to 1.40 * Bump minimum supported Rust version to 1.40
* Replace deprecated `net2` crate with `socket2` * 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 ## [1.0.0] - 2019-12-13

View File

@ -39,12 +39,12 @@ actix-server = "1.0.0"
actix-testing = "1.0.0" actix-testing = "1.0.0"
awc = "2.0.0-alpha.1" awc = "2.0.0-alpha.1"
base64 = "0.11" base64 = "0.12"
bytes = "0.5.3" bytes = "0.5.3"
futures-core = { version = "0.3.5", default-features = false } futures-core = { version = "0.3.5", default-features = false }
http = "0.2.0" http = "0.2.0"
log = "0.4" log = "0.4"
env_logger = "0.6" env_logger = "0.7"
socket2 = "0.3" socket2 = "0.3"
serde = "1.0" serde = "1.0"
serde_json = "1.0" serde_json = "1.0"