rstdev-storage 0.3.0

A library to manage external storage database instance and connection
Documentation
# rstdev-storage

A `rstdev-storage` is a library that provide a base abstraction for any
external storages including for it's implementations. 

The main purpose of this library is to provide a base layer of abstraction
that designed to be working side-by-side with the object that implement `Repository Pattern`.

Current supported storage engines:

- MySQL
- Postgres
- RocksDB

> **INFO**
>
> For all SQL storage implementations, it will using [sqlx]https://crates.io/crates/sqlx library

## Installation

```toml
[dependencies]
rstdev-storage = {version = "0.3.0"}
```

### Features

- `mysql`, will only install and load base `sqlx` library with `runtime-tokio` and `mysql` enabled
- `postgresql`, will only install and load base `sqlx` library with `runtime-tokio` and `posgres` enabled
- `rocksdb`, will only install and load engine implementation of `rust-rocksdb` 

Example:

Want to install `MySQL` (or `PostgreSQL`) engine implementation

```toml
[dependencies]
rstdev-storage = {version = "0.3.0", features = ["mysql"]}
```

---

Want to install `RocksDB` engine implementation

```toml
[dependencies]
rstdev-storage = {version = "0.3.0", features = ["rocksdb"]}
```