Skip to content

Commit 539b42a

Browse files
committed
v0.19.0
1 parent d3b02d1 commit 539b42a

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-s3"
3-
version = "0.18.11"
3+
version = "0.19.0"
44
authors = ["Drazen Urch", "Nick Stevens"]
55
description = "Tiny Rust library for working with Amazon S3 and compatible object storage APIs"
66
repository = "https://github.com/durch/rust-s3"

README.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,22 @@
33
[![](http://meritbadge.herokuapp.com/rust-s3)](https://crates.io/crates/rust-s3)
44
![](https://img.shields.io/crates/d/rust-s3.svg)
55
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/durch/rust-s3/blob/master/LICENSE.md)
6-
[![Join the chat at https://gitter.im/durch/rust-s3](https://badges.gitter.im/durch/rust-s3.svg)](https://gitter.im/durch/rust-s3?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6+
<!-- [![Join the chat at https://gitter.im/durch/rust-s3](https://badges.gitter.im/durch/rust-s3.svg)](https://gitter.im/durch/rust-s3?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -->
77
## rust-s3 [[docs](https://durch.github.io/rust-s3/)]
88

9-
Tiny Rust library for working with Amazon S3 or arbitrary S3 compatible APIs, fully compatible with *async* usage
9+
Tiny Rust library for working with Amazon S3 or arbitrary S3 compatible APIs, fully compatible with **async/await** and `futures ^0.3`
1010

1111
### Intro
1212
Modest interface towards Amazon S3, as well as S3 compatible object storage APIs such as Wasabi or Minio.
1313
Supports `put`, `get`, `list`, and `delete`, operations on `tags` and `location`.
1414

15-
Supports streaming S3 contents, generic over `T: Write` as of `0.15.0`.
16-
17-
[`0.19.0`](https://github.com/durch/rust-s3/pulls) will be promoted to `master` as dependencies mature. It will bring a slew of breaking changes including futures 0.3 and async/.await support. `0.19.0` is a possible candidate for stabilization to `1.0.0` eventually. Alpha version of `0.19.0` is available at [crates.io](https://crates.io/crates/rust-s3/0.19.0-alpha.1).
15+
Supports streaming S3 contents, generic over `T: Write`, as well as streaming local paths to S3.
1816

1917
### What is cool -> Broken and tracked at [#54](https://github.com/durch/rust-s3/issues/54)
2018

2119
The main cool feature is that `put` commands return a presigned link to the file you uploaded
2220
This means you can upload to s3, and give the link to select people without having to worry about publicly accessible files on S3.
2321

24-
2522
### Configuration
2623

2724
Getter and setter functions exist for all `Link` params... You don't really have to touch anything there, maybe `amz-expire`,
@@ -33,13 +30,13 @@ it is configured for one week which is the maximum Amazon allows ATM.
3330

3431
```
3532
[dependencies]
36-
rust-s3 = "0.18.11"
33+
rust-s3 = "0.19.0"
3734
```
3835

3936
#### Disable SSL verification for endpoints, useful for custom regions
4037
```
4138
[dependencies]
42-
rust-s3 = {version = "0.18.11", features = ["no-verify-ssl"]}
39+
rust-s3 = {version = "0.19.0", features = ["no-verify-ssl"]}
4340
```
4441

4542
#### AWS and Custom (Minio) Example

0 commit comments

Comments
 (0)