Skip to content

Commit fbc24b2

Browse files
authored
fixes following v0.5.0 releases (#429)
* fix: rename lambda extension to match crates.io * docs: fix lambda-extension crate name
1 parent 8c19f50 commit fbc24b2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This package makes it easy to run AWS Lambda Functions written in Rust. This wor
66

77
- [![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.
88
- [![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.
9-
- [![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.
9+
- [![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.
1010
- [![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.
1111

1212

lambda-extension/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "lambda_extension"
2+
name = "lambda-extension"
33
version = "0.5.0"
44
edition = "2018"
55
authors = ["David Calavera <[email protected]>"]

lambda-integration-tests/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ readme = "../README.md"
1515
[dependencies]
1616
lambda_http = { path = "../lambda-http", version = "0.5" }
1717
lambda_runtime = { path = "../lambda-runtime", version = "0.5" }
18-
lambda_extension = { path = "../lambda-extension", version = "0.5" }
18+
lambda-extension = { path = "../lambda-extension", version = "0.5" }
1919
serde = { version = "1", features = ["derive"] }
2020
tokio = { version = "1", features = ["full"] }
2121
tracing = { version = "0.1", features = ["log"] }

0 commit comments

Comments
 (0)