remi 0.1.2

๐Ÿปโ€โ„๏ธ๐Ÿงถ Robust, and simple asynchronous Rust crate to handle storage-related communications with different storage providers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# ๐Ÿปโ€โ„๏ธ๐Ÿงถ remi-rs
> *Robust, and simple asynchronous Rust crate to handle storage-related communications with different storage providers.*

The **remi** crate is just a re-export of all the available crates that are available, but these are enabled via Cargo features. You define the crates you want to export within this library.

## Usage
```toml
[dependencies]
# this will export the following modules:
#   remi::gridfs (remi-gridfs)
#   remi::core   (remi-core)
#   remi::fs     (remi-fs)
#   remi::s3     (remi-s3)
remi = { version = "0.1.0", features = ["fs", "s3"] }
```