Skip to content

Commit f30d1f5

Browse files
committed
Update README
1 parent fc78527 commit f30d1f5

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Rust library for working with Amazon S3 or arbitrary S3 compatible APIs, fully c
1616
### Intro
1717

1818
Modest interface towards Amazon S3, as well as S3 compatible object storage APIs such as Wasabi, Yandex, Minio or Google Cloud Storage.
19-
Supports `put`, `get`, `list`, `delete`, operations on `tags` and `location`.
19+
Supports: `put`, `get`, `list`, `delete`, operations on `tags` and `location`, well as `head`.
2020

2121
Additionally a dedicated `presign_get` `Bucket` method is available. This means you can upload to s3, and give the link to select people without having to worry about publicly accessible files on S3. This also means that you can give people
2222
a `PUT` presigned URL, meaning they can upload to a specific key in S3 for the duration of the presigned URL.
@@ -29,9 +29,9 @@ a `PUT` presigned URL, meaning they can upload to a specific key in S3 for the d
2929

3030
#### Buckets
3131

32-
| | |
33-
|----------|-------------------------------------------------------------------------------|
34-
| `create` | [async](https://docs.rs/rust-s3/s3/bucket/struct.Bucket.html#method.create) |
32+
| | |
33+
|----------|-----------------------------------------------------------------------------|
34+
| `create` | [async](https://docs.rs/rust-s3/s3/bucket/struct.Bucket.html#method.create) |
3535
| `delete` | [async](https://docs.rs/rust-s3/s3/bucket/struct.Bucket.html#method.delete) |
3636

3737
#### Presign
@@ -98,11 +98,18 @@ Each `GET` method has a `PUT` companion `sync` and `async` methods are generic o
9898
| `async` | [get_object_tagging](https://docs.rs/rust-s3/s3/bucket/struct.Bucket.html#method.get_object_tagging) |
9999
| `sync` | [get_object_tagging_blocking](https://docs.rs/rust-s3/s3/bucket/struct.Bucket.html#method.get_object_tagging_blocking) |
100100

101+
#### Head
102+
103+
| | |
104+
|---------|----------------------------------------------------------------------------------------------------------|
105+
| `async` | [head_object](https://docs.rs/rust-s3/s3/bucket/struct.Bucket.html#method.head_object) |
106+
| `sync` | [head_object_blocking](https://docs.rs/rust-s3/s3/bucket/struct.Bucket.html#method.head_object_blocking) |
107+
101108
### Usage (in `Cargo.toml`)
102109

103110
```toml
104111
[dependencies]
105-
rust-s3 = "0.26.0"
112+
rust-s3 = "0.26"
106113
```
107114

108115
#### Features

0 commit comments

Comments
 (0)