Skip to content

Commit

Permalink
fixes following v0.5.0 releases (#429)
Browse files Browse the repository at this point in the history
* fix: rename lambda extension to match crates.io

* docs: fix lambda-extension crate name
  • Loading branch information
nmoutschen authored Feb 20, 2022
1 parent 8c19f50 commit fbc24b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This package makes it easy to run AWS Lambda Functions written in Rust. This wor

- [![Docs](https://docs.rs/lambda_runtime/badge.svg)](https://docs.rs/lambda_runtime) **`lambda-runtime`** is a library that provides a Lambda runtime for applications written in Rust.
- [![Docs](https://docs.rs/lambda_http/badge.svg)](https://docs.rs/lambda_http) **`lambda-http`** is a library that makes it easy to write API Gateway proxy event focused Lambda functions in Rust.
- [![Docs](https://docs.rs/lambda_extension/badge.svg)](https://docs.rs/lambda_extension) **`lambda-extension`** is a library that makes it easy to write Lambda Runtime Extensions in Rust.
- [![Docs](https://docs.rs/lambda-extension/badge.svg)](https://docs.rs/lambda-extension) **`lambda-extension`** is a library that makes it easy to write Lambda Runtime Extensions in Rust.
- [![Docs](https://docs.rs/lambda_runtime_api_client/badge.svg)](https://docs.rs/lambda_runtime_api_client) **`lambda-runtime-api-client`** is a shared library between the lambda runtime and lambda extension libraries that includes a common API client to talk with the AWS Lambda Runtime API.


Expand Down
2 changes: 1 addition & 1 deletion lambda-extension/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "lambda_extension"
name = "lambda-extension"
version = "0.5.0"
edition = "2018"
authors = ["David Calavera <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion lambda-integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ readme = "../README.md"
[dependencies]
lambda_http = { path = "../lambda-http", version = "0.5" }
lambda_runtime = { path = "../lambda-runtime", version = "0.5" }
lambda_extension = { path = "../lambda-extension", version = "0.5" }
lambda-extension = { path = "../lambda-extension", version = "0.5" }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
Expand Down

0 comments on commit fbc24b2

Please sign in to comment.