-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
30 lines (27 loc) · 896 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "warp_lambda"
description = "A super simple crate to let you use [warp filters](https://github.com/seanmonstar/warp) with [aws lambda runtime](https://github.com/awslabs/aws-lambda-rust-runtime)"
license = "MIT"
readme = "README.md"
repository = "https://github.com/aslamplr/warp_lambda"
homepage = "https://github.com/aslamplr/warp_lambda#warp_lambda"
version = "0.1.4"
authors = ["Aslam Ahammed <[email protected]>"]
edition = "2021"
keywords = ["lambda", "aws-lambda", "warp", "serverless", "warp-lambda"]
categories = ["web-programming", "web-programming::http-server"]
[badges]
maintenance = { status = "experimental" }
[dependencies]
lambda_http = "0.5"
url = "2.2"
mime = "0.3"
once_cell = "1.7"
warp = "0.3"
tower = "0.4"
thiserror = "1.0"
tracing = "0.1"
[dev-dependencies]
anyhow = "1.0"
tokio = { version = "1.2", features = [ "full" ]}
tracing-subscriber = "0.2"