From ff2e210387910204b582c14b6685e34090e421e2 Mon Sep 17 00:00:00 2001 From: Rousan Ali Date: Sun, 2 Jan 2022 19:15:18 +0530 Subject: [PATCH 1/2] Bump the version for routerify 3 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index df72c7c..fc6ee4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,8 +23,8 @@ all = ["json"] json = ["multer/json"] [dependencies] -routerify = "2" -hyper = "0.14" +routerify = "3" +hyper = { version = "0.14", default-features = false, features = ["stream"] } multer = "2" [dev-dependencies] From 789c4f5dc5f1f0eb669bd66fc3c86d4559d7420a Mon Sep 17 00:00:00 2001 From: Rousan Ali Date: Sun, 2 Jan 2022 19:17:24 +0530 Subject: [PATCH 2/2] Bump version --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fc6ee4b..f881748 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "routerify-multipart" -version = "2.0.0" +version = "3.0.0" description = "A multipart/form-data parser for Routerify." homepage = "https://github.com/routerify/routerify-multipart" repository = "https://github.com/routerify/routerify-multipart" diff --git a/README.md b/README.md index 371d06c..6206667 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ Add this to your `Cargo.toml` file: ```toml [dependencies] -routerify = "2" -routerify-multipart = "2" +routerify = "3" +routerify-multipart = "3" ``` ## Example