Skip to content

Commit eaea788

Browse files
committed
Release v0.0.3
Update documentation
1 parent 4526fb9 commit eaea788

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "lists3"
3-
version = "0.0.2"
4-
description = "Service that creates object listing functionality for S3 buckets"
3+
version = "0.0.3"
4+
description = "Light-weight CLI tool to create a file browser for S3 buckets provisioning bucket listing."
55
edition = "2021"
66
authors = ["Vignesh Rao"]
77
license = "MIT"
8-
rust-version = "1.79.0"
9-
documentation = "https://docs.rs/crate/lists3"
8+
rust-version = "1.80.0"
9+
documentation = "https://docs.rs/lists3/latest/lists3"
1010
homepage = "https://github.com/thevickypedia/lists3"
1111
repository = "https://github.com/thevickypedia/lists3"
1212
keywords = ["s3-filebrowser", "bucket-listing"]
@@ -32,7 +32,7 @@ rustdoc-args = ["--document-private-items"]
3232
[dependencies]
3333
minijinja = { version = "2.1.0", features = ["loader"] }
3434
url = "2.5.2"
35-
serde = { version = "1.0.202", features = ["derive"] }
35+
serde = { version = "1.0.204", features = ["derive"] }
3636
serde_json = "1.0.121"
3737
aws-sdk-s3 = { version = "1.42.0", features = ["behavior-version-latest"] }
3838
aws-config = { version = "1.5.4", features = ["behavior-version-latest"] }

README.md

+10-5
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
<details>
1313
<summary><strong>Download pre-compiled OS specific executable</strong></summary>
1414

15-
###### macOS
15+
###### macOS (Intel)
1616
```shell
1717
curl -o lists3-darwin-amd64.tar.gz -LH "Accept: application/octet-stream" "https://github.com/thevickypedia/lists3/releases/latest/download/lists3-darwin-amd64.tar.gz"
1818
```
1919

20-
###### macOS - M1
20+
###### macOS (M1)
2121
```shell
2222
curl -o lists3-darwin-arm64.tar.gz -LH "Accept: application/octet-stream" "https://github.com/thevickypedia/lists3/releases/latest/download/lists3-darwin-arm64.tar.gz"
2323
```
@@ -27,10 +27,15 @@ curl -o lists3-darwin-arm64.tar.gz -LH "Accept: application/octet-stream" "https
2727
curl -o lists3-linux-amd64.tar.gz -LH "Accept: application/octet-stream" "https://github.com/thevickypedia/lists3/releases/latest/download/lists3-linux-amd64.tar.gz"
2828
```
2929

30-
###### Windows
30+
###### Windows (curl)
3131
```shell
3232
curl -o lists3-windows-amd64.zip -LH "Accept: application/octet-stream" "https://github.com/thevickypedia/lists3/releases/latest/download/lists3-windows-amd64.zip"
3333
```
34+
35+
###### Windows (Invoke-WebRequest)
36+
```shell
37+
Invoke-WebRequest -Uri https://github.com/thevickypedia/lists3/releases/latest/download/lists3-windows-amd64.zip -OutFile lists3-windows-amd64.zip
38+
```
3439
</details>
3540

3641
### Arguments
@@ -57,7 +62,7 @@ curl -o lists3-windows-amd64.zip -LH "Accept: application/octet-stream" "https:/
5762
[https://crates.io/crates/lists3][crate]
5863

5964
### Cargo Docs - Official Runbook
60-
[https://docs.rs/crate/lists3][docs]
65+
[https://docs.rs/lists3/latest/lists3][docs]
6166

6267
**Generator**
6368
```shell
@@ -89,4 +94,4 @@ Licensed under the [MIT License][license]
8994
[crate]: https://crates.io/crates/lists3
9095
[gh-checks]: https://github.com/thevickypedia/lists3/actions/workflows/rust.yml
9196
[crates-logo]: https://img.shields.io/crates/v/lists3.svg
92-
[docs]: https://docs.rs/crate/lists3
97+
[docs]: https://docs.rs/lists3/latest/lists3

0 commit comments

Comments
 (0)