From d45f7fcb64f4ae79e4aacdb2894e290a0f9a870e Mon Sep 17 00:00:00 2001 From: Abraxas-365 Date: Mon, 15 Apr 2024 22:50:45 -0500 Subject: [PATCH] chore: adding features to readme --- README.md | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f50f90..ce45f9d 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,36 @@ ### Instalation -``` +```bash cargo add keyv ``` +#### Features + +- Full + + ```bash + cargo add keyv --features full + ``` + +- Redis + + ```bash + cargo add keyv --features redis + ``` + +- Postgres + + ```bash + cargo add keyv --features postgres + ``` + +- MySql + + ```bash + cargo add keyv --features mysql + ``` + ### Initialization By default everything is stored in memory, you can optionally also install a storage adapter.