From fac6dec3c96cfa1caaf2abdc233a43076f6830c3 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Fri, 13 Dec 2019 12:36:15 +0600 Subject: [PATCH] update deps --- actix-cors/Cargo.toml | 4 ++-- actix-files/Cargo.toml | 10 +++++----- actix-framed/Cargo.toml | 10 +++++----- actix-http/Cargo.toml | 2 +- actix-identity/Cargo.toml | 8 ++++---- actix-multipart/Cargo.toml | 12 +++++------- actix-session/Cargo.toml | 8 +++----- awc/Cargo.toml | 2 +- test-server/Cargo.toml | 2 +- 9 files changed, 27 insertions(+), 31 deletions(-) diff --git a/actix-cors/Cargo.toml b/actix-cors/Cargo.toml index 935166ebc..05885acfd 100644 --- a/actix-cors/Cargo.toml +++ b/actix-cors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-cors" -version = "0.2.0-alpha.3" +version = "0.2.0" authors = ["Nikolay Kim "] description = "Cross-origin resource sharing (CORS) for Actix applications." readme = "README.md" @@ -17,7 +17,7 @@ name = "actix_cors" path = "src/lib.rs" [dependencies] -actix-web = "2.0.0-alpha.3" +actix-web = "2.0.0-alpha.5" actix-service = "1.0.0" derive_more = "0.99.2" futures = "0.3.1" diff --git a/actix-files/Cargo.toml b/actix-files/Cargo.toml index eb5f65ea0..5a65ad1f9 100644 --- a/actix-files/Cargo.toml +++ b/actix-files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-files" -version = "0.2.0-alpha.3" +version = "0.2.0" authors = ["Nikolay Kim "] description = "Static files support for actix web." readme = "README.md" @@ -18,11 +18,11 @@ name = "actix_files" path = "src/lib.rs" [dependencies] -actix-web = { version = "2.0.0-alpha.3", default-features = false } -actix-http = "1.0.0-alpha.3" +actix-web = { version = "2.0.0-alpha.5", default-features = false } +actix-http = "1.0.0" actix-service = "1.0.0" bitflags = "1" -bytes = "0.5.2" +bytes = "0.5.3" futures = "0.3.1" derive_more = "0.99.2" log = "0.4" @@ -33,4 +33,4 @@ v_htmlescape = "0.4" [dev-dependencies] actix-rt = "1.0.0" -actix-web = { version = "2.0.0-alpha.3", features=["openssl"] } +actix-web = { version = "2.0.0-alpha.5", features=["openssl"] } diff --git a/actix-framed/Cargo.toml b/actix-framed/Cargo.toml index b7e041765..8848bff28 100644 --- a/actix-framed/Cargo.toml +++ b/actix-framed/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-framed" -version = "0.3.0-alpha.1" +version = "0.3.0" authors = ["Nikolay Kim "] description = "Actix framed app server" readme = "README.md" @@ -24,9 +24,9 @@ actix-codec = "0.2.0" actix-service = "1.0.0" actix-router = "0.2.0" actix-rt = "1.0.0" -actix-http = "1.0.0-alpha.3" +actix-http = "1.0.0" -bytes = "0.5.2" +bytes = "0.5.3" futures = "0.3.1" pin-project = "0.4.6" log = "0.4" @@ -34,5 +34,5 @@ log = "0.4" [dev-dependencies] actix-server = "1.0.0" actix-connect = { version = "1.0.0", features=["openssl"] } -actix-http-test = { version = "1.0.0-alpha.3", features=["openssl"] } -actix-utils = "1.0.0" +actix-http-test = { version = "1.0.0", features=["openssl"] } +actix-utils = "1.0.3" diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index abe9dc961..b95879a28 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -92,7 +92,7 @@ fail-ure = { version = "0.1.5", package="failure", optional = true } [dev-dependencies] actix-server = "1.0.0" actix-connect = { version = "1.0.0", features=["openssl"] } -actix-http-test = { version = "1.0.0-alpha.3", features=["openssl"] } +actix-http-test = { version = "1.0.0", features=["openssl"] } actix-tls = { version = "1.0.0", features=["openssl"] } futures = "0.3.1" env_logger = "0.6" diff --git a/actix-identity/Cargo.toml b/actix-identity/Cargo.toml index 156b105d4..4e96203bf 100644 --- a/actix-identity/Cargo.toml +++ b/actix-identity/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-identity" -version = "0.2.0-alpha.3" +version = "0.2.0" authors = ["Nikolay Kim "] description = "Identity service for actix web framework." readme = "README.md" @@ -17,7 +17,7 @@ name = "actix_identity" path = "src/lib.rs" [dependencies] -actix-web = { version = "2.0.0-alpha.3", default-features = false, features = ["secure-cookies"] } +actix-web = { version = "2.0.0-alpha.5", default-features = false, features = ["secure-cookies"] } actix-service = "1.0.0" futures = "0.3.1" serde = "1.0" @@ -26,5 +26,5 @@ time = "0.1.42" [dev-dependencies] actix-rt = "1.0.0" -actix-http = "1.0.0-alpha.3" -bytes = "0.5.2" \ No newline at end of file +actix-http = "1.0.0" +bytes = "0.5.3" \ No newline at end of file diff --git a/actix-multipart/Cargo.toml b/actix-multipart/Cargo.toml index 82b98bc09..b0ef36d10 100644 --- a/actix-multipart/Cargo.toml +++ b/actix-multipart/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-multipart" -version = "0.2.0-alpha.3" +version = "0.2.0" authors = ["Nikolay Kim "] description = "Multipart support for actix web framework." readme = "README.md" @@ -9,8 +9,6 @@ homepage = "https://actix.rs" repository = "https://github.com/actix/actix-web.git" documentation = "https://docs.rs/actix-multipart/" license = "MIT/Apache-2.0" -exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] -workspace = ".." edition = "2018" [lib] @@ -18,10 +16,10 @@ name = "actix_multipart" path = "src/lib.rs" [dependencies] -actix-web = { version = "2.0.0-alpha.3", default-features = false } +actix-web = { version = "2.0.0-alpha.5", default-features = false } actix-service = "1.0.0" -actix-utils = "1.0.0" -bytes = "0.5.2" +actix-utils = "1.0.3" +bytes = "0.5.3" derive_more = "0.99.2" httparse = "1.3" futures = "0.3.1" @@ -32,4 +30,4 @@ twoway = "0.2" [dev-dependencies] actix-rt = "1.0.0" -actix-http = "1.0.0-alpha.3" \ No newline at end of file +actix-http = "1.0.0" \ No newline at end of file diff --git a/actix-session/Cargo.toml b/actix-session/Cargo.toml index ef8f40e7e..f26401851 100644 --- a/actix-session/Cargo.toml +++ b/actix-session/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-session" -version = "0.3.0-alpha.3" +version = "0.3.0" authors = ["Nikolay Kim "] description = "Session for actix web framework." readme = "README.md" @@ -9,8 +9,6 @@ homepage = "https://actix.rs" repository = "https://github.com/actix/actix-web.git" documentation = "https://docs.rs/actix-session/" license = "MIT/Apache-2.0" -exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] -workspace = ".." edition = "2018" [lib] @@ -24,9 +22,9 @@ default = ["cookie-session"] cookie-session = ["actix-web/secure-cookies"] [dependencies] -actix-web = "2.0.0-alpha.3" +actix-web = "2.0.0-alpha.5" actix-service = "1.0.0" -bytes = "0.5.2" +bytes = "0.5.3" derive_more = "0.99.2" futures = "0.3.1" serde = "1.0" diff --git a/awc/Cargo.toml b/awc/Cargo.toml index 18fd93791..28931916c 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -40,7 +40,7 @@ actix-http = "1.0.0" actix-rt = "1.0.0" base64 = "0.11" -bytes = "0.5.2" +bytes = "0.5.3" derive_more = "0.99.2" futures-core = "0.3.1" log =" 0.4" diff --git a/test-server/Cargo.toml b/test-server/Cargo.toml index dc679b09b..a6173088a 100644 --- a/test-server/Cargo.toml +++ b/test-server/Cargo.toml @@ -55,5 +55,5 @@ time = "0.1" open-ssl = { version="0.10", package="openssl", optional = true } [dev-dependencies] -#actix-web = "2.0.0-alpha.4" +actix-web = "2.0.0-alpha.5" actix-http = "1.0.0"