strois 0.0.4

S3 synchronous SDK based on rusty_s3 and ureq
Documentation
Strois
======

An S3 synchronous SDK based on rusty_s3 and ureq.

## Usage

### Sending and retrieving a document on S3

```rust
use strois::Builder;

let bucket = Builder::new("http://localhost:9000")?
    .key("minioadmin")
    .secret("minioadmin")
    .bucket("tamo")?
    .create()?;
bucket.put_object("tamo", b"kero")?;

let content = bucket.get_object_string("tamo")?;
assert_eq!(content, "kero");
# Ok::<(), strois::Error>(())
```