Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.

Commit 2675135

Browse files
authored
Add crates badge (#145)
Signed-off-by: David Calavera <[email protected]>
1 parent 1f12f6a commit 2675135

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# [aws_lambda_events](https://github.com/calavera/aws-lambda-events)
22

3-
[![Documentation](https://docs.rs/aws_lambda_events/badge.svg)](https://docs.rs/aws_lambda_events)
3+
[![crates.io][crate-image]][crate-link]
4+
[![Documentation][docs-image]][docs-link]
45

56
This crate provides strongly-typed [AWS Lambda event structs](https://docs.aws.amazon.com/lambda/latest/dg/invoking-lambda-function.html) in Rust.
67

@@ -10,7 +11,7 @@ Include the crate in your `Cargo.toml`:
1011

1112
```toml
1213
[dependencies]
13-
aws_lambda_events = "^0.7"
14+
aws_lambda_events = "^0.8"
1415
```
1516

1617
## Usage
@@ -29,5 +30,11 @@ This crate divides all Lambda Events into features named after the service that
2930

3031
```toml
3132
[dependencies]
32-
aws_lambda_events = { version = "^0.7", default-features = false, features = ["apigw", "alb"] }
33+
aws_lambda_events = { version = "^0.8", default-features = false, features = ["apigw", "alb"] }
3334
```
35+
36+
[//]: # 'badges'
37+
[crate-image]: https://img.shields.io/crates/v/aws_lambda_events.svg
38+
[crate-link]: https://crates.io/crates/aws_lambda_events
39+
[docs-image]: https://docs.rs/aws_lambda_events/badge.svg
40+
[docs-link]: https://docs.rs/aws_lambda_events

0 commit comments

Comments
 (0)