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
33 lines (28 loc) · 918 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 918 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
32
33
[package]
name = "lambda-integration-tests"
version = "1.0.1"
authors = ["Maxime David"]
edition = "2021"
rust-version = "1.84.0"
description = "AWS Lambda Runtime integration tests"
license = "Apache-2.0"
repository = "https://github.com/aws/aws-lambda-rust-runtime"
categories = ["web-programming::http-server"]
keywords = ["AWS", "Lambda", "API"]
readme = "../README.md"
[dependencies]
lambda_runtime = { path = "../lambda-runtime", features = ["tracing", "graceful-shutdown"] }
aws_lambda_events = { path = "../lambda-events" }
serde_json = "1.0.121"
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0.204", features = ["derive"] }
[dev-dependencies]
reqwest = { version = "0.12.5", features = ["blocking"] }
[features]
catch-all-fields = ["aws_lambda_events/catch-all-fields"]
[[bin]]
name = "helloworld"
path = "src/helloworld.rs"
[[bin]]
name = "authorizer"
path = "src/authorizer.rs"