Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 12db08c

Browse files
authoredMay 8, 2024··
add readme and release 1.0.0
1 parent 02ed0e1 commit 12db08c

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed
 

‎Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
[package]
22
name = "aws-msk-iam-sasl-signer"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
edition = "2021"
55
license = "Apache-2.0"
6+
authors = ["Yuhao Su<yuhaosu@outlook.com>"]
7+
description = "AWS MSK IAM SASL Signer"
8+
repository = "https://github.com/yuhao-su/aws-msk-iam-sasl-signer-rs"
9+
homepage = "https://github.com/yuhao-su/aws-msk-iam-sasl-signer-rs"
10+
readme = "README.md"
11+
keywords = ["aws", "msk", "kafka", "sasl", "iam"]
12+
categories = ["authentication"]
613
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
714

815
[dependencies]

‎README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# AWS MSK IAM SASL Signer for Go
2+
3+
[![CI status](https://github.com/yuhao-su/aws-msk-iam-sasl-signer-rs/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/yuhao-su/aws-msk-iam-sasl-signer-rs/actions/workflows/ci.yaml)
4+
[![Apache V2 License](https://img.shields.io/badge/license-Apache%20V2-blue.svg)](./LICENSE)
5+
6+
`aws-msk-iam-sasl-signer-rs` is a AWS MSK IAM SASL signer for Rust. It is a port of the [aws-msk-iam-sasl-signer-go](https://github.com/aws/aws-msk-iam-sasl-signer-go).
7+
8+
## Usage
9+
add the following to your `Cargo.toml`:
10+
```toml
11+
[dependencies]
12+
aws-msk-iam-sasl-signer = "1.0.0"
13+
```
14+
15+
## Example
16+
check the [producer example](./examples/consumer.rs) and [consumer example](./examples/producer.rs) for more details.
17+
18+
## License
19+
This library is licensed under the [Apache 2.0 License](./LICENSE).

0 commit comments

Comments
 (0)
Please sign in to comment.