Skip to content

Commit 015ddd4

Browse files
authored
Update README.md
1 parent 1198754 commit 015ddd4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This SDK for Rust is code generated from [Smithy models](https://awslabs.github.
88

99
## Getting Started with the SDK
1010

11-
The new AWS SDK for Rust is built with crates per AWS service. [Tokio](https://crates.io/crates/tokio) must also be added as a dependency within your Rust project to execute asynchronous code. During the alpha, the SDK will not be pushed to crates.io and must be used via a Git dependency.
11+
The new AWS SDK for Rust is built with one crate per AWS service. [Tokio](https://crates.io/crates/tokio) must also be added as a dependency within your Rust project to execute asynchronous code. During the alpha, the SDK will not be pushed to crates.io and must be used via a Git dependency.
1212

1313
1. Create a new Rust project: `cargo new sdk-example`
1414
2. Within your Cargo.toml file, add dependencies for DynamoDB and Tokio:
@@ -18,7 +18,8 @@ The new AWS SDK for Rust is built with crates per AWS service. [Tokio](https://c
1818
dynamodb = { git = "https://awslabs/aws-sdk-rust", tag = "v0.0.1-alpha", package = "aws-sdk-dynamodb" }
1919
tokio = { version = "1", features = ["full"] }
2020
```
21-
3. Input your AWS credentials into your terminal as environment variables **Note:** The alpha SDK only supports environment variable credential providers at this time.
21+
3. Provide your AWS credentials as environment variables:
22+
> **Note:** The alpha SDK only supports environment variable credential providers at this time.
2223
2324
```bash
2425
export AWS_ACCESS_KEY_ID=...
@@ -46,8 +47,8 @@ In order to use the SDK for Rust, you must already have Rust and Cargo installed
4647

4748
## Getting Help
4849

49-
* [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - Submit your questions on the discussion board
50-
* *Public slack channel/Gitter/Discord?*
50+
* [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions.
51+
* [GitHub issues] – For bug reports.
5152

5253
## Feedback and Contributing
5354

0 commit comments

Comments
 (0)