1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-12 02:09:36 +00:00

update dependencies

This commit is contained in:
Nikolay Kim 2019-05-12 10:18:02 -07:00
parent 07c9eec803
commit e9cbcbaf03
11 changed files with 26 additions and 19 deletions

View file

@ -76,7 +76,7 @@ actix-server = "0.5.0"
actix-server-config = "0.1.1"
actix-threadpool = "0.1.0"
actix = { version = "0.8.1", features=["http"], optional = true }
awc = { version = "0.1.1", optional = true }
awc = { version = "0.2.0", optional = true }
bytes = "0.4"
derive_more = "0.14"
@ -100,7 +100,7 @@ rustls = { version = "^0.15", optional = true }
[dev-dependencies]
actix-http = { version = "0.2.0", features=["ssl", "brotli", "flate2-zlib"] }
actix-http-test = { version = "0.1.1", features=["ssl"] }
actix-http-test = { version = "0.2.0", features=["ssl"] }
actix-files = { version = "0.1.0-betsa.1" }
rand = "0.6"
env_logger = "0.6"
@ -124,5 +124,4 @@ actix-session = { path = "actix-session" }
awc = { path = "awc" }
actix-files = { path = "actix-files" }
actix-framed = { path = "actix-framed" }
actix-multipart = { path = "actix-multipart" }

View file

@ -1,6 +1,6 @@
[package]
name = "actix-framed"
version = "0.1.0"
version = "0.2.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix framed app server"
readme = "README.md"
@ -25,7 +25,7 @@ actix-service = "0.4.0"
actix-utils = "0.4.0"
actix-router = "0.1.2"
actix-rt = "0.2.2"
actix-http = "0.1.0"
actix-http = "0.2.0"
actix-server-config = "0.1.1"
bytes = "0.4"
@ -33,6 +33,6 @@ futures = "0.1.25"
log = "0.4"
[dev-dependencies]
actix-server = { version = "0.4.3", features=["ssl"] }
actix-connect = { version = "0.1.4", features=["ssl"] }
actix-http-test = { version = "0.1.0", features=["ssl"] }
actix-server = { version = "0.5.0", features=["ssl"] }
actix-connect = { version = "0.2.0", features=["ssl"] }
actix-http-test = { version = "0.2.0", features=["ssl"] }

View file

@ -1,5 +1,10 @@
# Changes
## [0.2.0] - 2019-05-12
* Update dependencies
## [0.1.0] - 2019-04-16
* Update tests

View file

@ -99,7 +99,7 @@ chrono = "0.4.6"
actix-rt = "0.2.2"
actix-server = { version = "0.5.0", features=["ssl"] }
actix-connect = { version = "0.2.0", features=["ssl"] }
actix-http-test = { version = "0.1.0", features=["ssl"] }
actix-http-test = { version = "0.2.0", features=["ssl"] }
env_logger = "0.6"
serde_derive = "1.0"
openssl = { version="0.10" }

View file

@ -31,4 +31,4 @@ twoway = "0.2"
[dev-dependencies]
actix-rt = "0.2.2"
actix-http = "0.1.1"
actix-http = "0.2.0"

View file

@ -20,11 +20,11 @@ path = "src/lib.rs"
[dependencies]
actix = "0.8.0"
actix-web = "1.0.0-beta.1"
actix-http = "0.1.1"
actix-http = "0.2.0"
actix-codec = "0.1.2"
bytes = "0.4"
futures = "0.1.25"
[dev-dependencies]
env_logger = "0.6"
actix-http-test = { version = "0.1.0", features=["ssl"] }
actix-http-test = { version = "0.2.0", features=["ssl"] }

View file

@ -17,6 +17,6 @@ syn = { version = "0.15", features = ["full", "parsing"] }
[dev-dependencies]
actix-web = { version = "1.0.0-alpha.6" }
actix-http = { version = "0.1.1", features=["ssl"] }
actix-http-test = { version = "0.1.0", features=["ssl"] }
actix-http = { version = "0.2.0", features=["ssl"] }
actix-http-test = { version = "0.2.0", features=["ssl"] }
futures = { version = "0.1" }

View file

@ -60,7 +60,7 @@ openssl = { version="0.10", optional = true }
actix-rt = "0.2.2"
actix-web = { version = "1.0.0-beta.1", features=["ssl"] }
actix-http = { version = "0.2.0", features=["ssl"] }
actix-http-test = { version = "0.1.1", features=["ssl"] }
actix-http-test = { version = "0.2.0", features=["ssl"] }
actix-utils = "0.4.0"
actix-server = { version = "0.5.0", features=["ssl"] }
brotli2 = { version="0.3.2" }

View file

@ -129,7 +129,6 @@ impl<T: 'static> DataFactory for Data<T> {
#[cfg(test)]
mod tests {
use actix_service::Service;
use std::sync::Mutex;
use crate::http::StatusCode;
use crate::test::{block_on, init_service, TestRequest};

View file

@ -1,5 +1,9 @@
# Changes
## [0.2.0] - 2019-05-12
* Update awc and actix-http deps
## [0.1.1] - 2019-04-24
* Always make new connection for http client

View file

@ -1,6 +1,6 @@
[package]
name = "actix-http-test"
version = "0.1.1"
version = "0.2.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix http test server"
readme = "README.md"
@ -35,7 +35,7 @@ actix-rt = "0.2.2"
actix-service = "0.4.0"
actix-server = "0.5.0"
actix-utils = "0.4.0"
awc = "0.1.1"
awc = "0.2.0"
base64 = "0.10"
bytes = "0.4"
@ -56,4 +56,4 @@ openssl = { version="0.10", optional = true }
[dev-dependencies]
actix-web = "1.0.0-beta.1"
actix-http = "0.1.2"
actix-http = "0.2.0"