From f073d9029f985a1466703c35835cdff18d025ad9 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sun, 21 Apr 2019 17:08:16 -0700 Subject: [PATCH] use actix-multipart 0.1.0-beta.1 --- async_ex2/Cargo.toml | 4 ++-- multipart/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/async_ex2/Cargo.toml b/async_ex2/Cargo.toml index 2cf14aa0..6a0f0a4e 100644 --- a/async_ex2/Cargo.toml +++ b/async_ex2/Cargo.toml @@ -8,7 +8,8 @@ workspace = ".." [dependencies] actix-rt = "0.2.2" actix-web = { version="1.0.0-beta.1", features=["ssl"] } -actix-multipart = { git="https://github.com/actix/actix-web.git" } +actix-multipart = "0.1.0-beta.1" +actix-service = "0.3.6" bytes = "0.4.12" env_logger = "0.6.1" futures = "0.1" @@ -18,4 +19,3 @@ serde_json = "1.0.39" time = "0.1.42" validator = "0.8.0" validator_derive = "0.8.0" -actix-service = "0.3.6" diff --git a/multipart/Cargo.toml b/multipart/Cargo.toml index a6223938..256683d1 100644 --- a/multipart/Cargo.toml +++ b/multipart/Cargo.toml @@ -10,8 +10,8 @@ name = "multipart" path = "src/main.rs" [dependencies] -actix-web = "1.0.0-alpha.4" -actix-multipart = { git="https://github.com/actix/actix-web.git" } +actix-web = "1.0.0-beta.1" +actix-multipart = "0.1.0-beta.1" env_logger = "0.6" futures = "0.1.25"