You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://gitter.im/durch/rust-s3?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6
+
<!--[](https://gitter.im/durch/rust-s3?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)-->
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`
10
10
11
11
### Intro
12
12
Modest interface towards Amazon S3, as well as S3 compatible object storage APIs such as Wasabi or Minio.
13
13
Supports `put`, `get`, `list`, and `delete`, operations on `tags` and `location`.
14
14
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.
18
16
19
17
### What is cool -> Broken and tracked at [#54](https://github.com/durch/rust-s3/issues/54)
20
18
21
19
The main cool feature is that `put` commands return a presigned link to the file you uploaded
22
20
This means you can upload to s3, and give the link to select people without having to worry about publicly accessible files on S3.
23
21
24
-
25
22
### Configuration
26
23
27
24
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.
33
30
34
31
```
35
32
[dependencies]
36
-
rust-s3 = "0.18.11"
33
+
rust-s3 = "0.19.0"
37
34
```
38
35
39
36
#### Disable SSL verification for endpoints, useful for custom regions
40
37
```
41
38
[dependencies]
42
-
rust-s3 = {version = "0.18.11", features = ["no-verify-ssl"]}
39
+
rust-s3 = {version = "0.19.0", features = ["no-verify-ssl"]}
0 commit comments