Skip to content

Commit ddceea3

Browse files
committed
0.2.1
1 parent 6ccb5e8 commit ddceea3

5 files changed

Lines changed: 8 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.2.1 : 2023-01-08
4+
5+
- Update lambda\_runtime 0.7.2
6+
37
## 0.2.0 : 2022-07-10
48

59
- Update lambda\_runtime 0.5.1

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda-web"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Hanabusa Masahiro"]
55
description = "Run Rust web frameworks on AWS Lambda"
66
edition = "2018"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Currently, it supports Actix web, axum, Rocket, warp.
1111
### Supported web frameworks
1212

1313
- [Actix Web](https://crates.io/crates/actix-web) 4.0
14-
- [axum](https://crates.io/crates/axum) 0.5
14+
- [axum](https://crates.io/crates/axum) 0.6
1515
- [Rocket](https://crates.io/crates/rocket/0.5.0-rc.2) 0.5.0-rc.2
1616
- [warp](https://crates.io/crates/warp) 0.3
1717

@@ -83,7 +83,7 @@ path = "src/main.rs"
8383

8484
[dependencies]
8585
lambda-web = { version = "0.2.0", features=["hyper"] }
86-
axum = "0.5"
86+
axum = "0.6"
8787
tokio = { version = "1" }
8888
```
8989

src/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ pub use rocket05::launch_rocket_on_lambda;
2828
mod hyper014;
2929
#[cfg(feature = "hyper")]
3030
pub use hyper014::run_hyper_on_lambda;
31-
#[cfg(feature = "warp03")]
32-
#[deprecated(since = "0.1.8", note = "Use run_hyper_on_lambda()")]
33-
pub use hyper014::run_warp_on_lambda;
34-
#[cfg(feature = "warp03")]
35-
pub use warp;
3631

3732
/// Returns true if it is running on AWS Lambda
3833
pub fn is_running_on_lambda() -> bool {

0 commit comments

Comments
 (0)