From 0bb1bfec4240a0bacc9597abb264fbc0a7fa8003 Mon Sep 17 00:00:00 2001 From: JesusPerez Date: Wed, 1 Sep 2021 19:47:30 +0100 Subject: [PATCH] chore: fix how to --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c45b0c5..e54e633 100644 --- a/README.md +++ b/README.md @@ -27,17 +27,13 @@ Updating packages or dependencies shoud be keep in sync among Cargo.toml 3 - For each member of of **Macros 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 = { version = "0.1.0", path = "../lib/defs/app_auth" } +kloud_entries_macro_derive = { path = "../lib/macros/kloud_entries_macro_derive" } ``` To include all libraries: ```toml -app_auth = { version = "0.1.0", path = "../lib/defs/app_auth" } -app_env = { version = "0.1.0", path = "../lib/defs/app_env" } -app_errors = { version = "0.1.0", path = "../lib/defs/app_errors" } -app_file = { version = "0.1.0", path = "../lib/defs/app_file" } -kloud = { version = "0.1.0", path = "../lib/defs/kloud" } +kloud_entries_macro_derive = { path = "../lib/macros/kloud_entries_macro_derive" } ``` ### Structure