forked from aws/aws-lambda-rust-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 929 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (28 loc) · 929 Bytes
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
31
[package]
name = "lambda_http"
version = "0.2.0-beta.1"
authors = ["Doug Tangren"]
edition = "2018"
description = "Application Load Balancer and API Gateway event types for AWS Lambda"
keywords = ["AWS", "Lambda", "APIGateway", "ALB", "API"]
license = "Apache-2.0"
homepage = "https://github.com/awslabs/aws-lambda-rust-runtime"
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
documentation = "https://docs.rs/lambda_runtime"
readme = "../README.md"
[badges]
travis-ci = { repository = "awslabs/aws-lambda-rust-runtime" }
maintenance = { status = "actively-developed" }
[dependencies]
base64 = "0.12"
http = "0.2"
lambda = { path = "../lambda", version = "0.1" }
lambda-attributes = { path = "../lambda-attributes", version = "0.1" }
serde = "^1"
serde_derive = "^1"
serde_json = "^1"
serde_urlencoded = "0.6"
[dev-dependencies]
log = "^0.4"
maplit = "1.0"
tokio = { version = "0.2", features = ["macros"] }