From 899566c9a25d650c13724e1f85d1b764a3b03e41 Mon Sep 17 00:00:00 2001 From: JesusPerez Date: Wed, 1 Sep 2021 19:37:44 +0100 Subject: [PATCH] chore: fix how to --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a7b968c..da6ba56 100644 --- a/README.md +++ b/README.md @@ -27,18 +27,20 @@ Updating packages or dependencies shoud be keep in sync among Cargo.toml 2 - Get current version from Cargo.toml -3 - For each member of of **Defs Library** one line like the one below should be included in target development Cargo.toml (adjust version & path) and **use** whatever is need. +3 - For each member of of **Handlers Library** one line like the one below should be included in target development Cargo.toml (adjust version & path) and **use** whatever is need. ```toml -app_auth_filters = { version = "0.1.0", path = "../lib/filters/app_auth_filters" } +app_auth_handlers = { version = "0.1.0", path = "../lib/handlers/app_auth_handlers" } ``` To include all libraries: ```toml -app_auth_filters = { version = "0.1.0", path = "../lib/filters/app_auth_filters" } +app_auth_handlers = { version = "0.1.0", path = "../lib/handlers/app_auth_handlers" } app_file_filters = { version = "0.1.0", path = "../lib/filters/app_file_filters" } -reject_filters = { version = "0.1.0", path = "../lib/filters/reject_filters" } +app_file_handlers = { version = "0.1.0", path = "../lib/handlers/app_file_handlers" } +reqtasks = { version = "0.1.0", path = "../lib/handlers/reqtasks" } +reqenv = { version = "0.1.0", path = "../lib/handlers/reqenv" } ``` ### Structure @@ -87,7 +89,6 @@ reqenv └── lib.rs - #### reqtasks Handlers for: