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
27 lines (25 loc) · 659 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (25 loc) · 659 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
[package]
name = "lambda"
version = "0.1.0"
authors = ["David Barsky <[email protected]>"]
description = "AWS Lambda Runtime."
edition = "2018"
[features]
# no features by default
default = ["simulated", "derive"]
simulated = []
derive = ["lambda-attributes"]
[dependencies]
tokio = { version = "0.2.4", features = ["full"] }
hyper = "0.13"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.39"
tower-service = "0.3"
bytes = "0.5"
http = "0.2"
lambda-attributes = { path = "../lambda-attributes", version = "0.1.0", optional = true}
async-stream = "0.2"
futures = "0.3"
tracing = "0.1.13"
tracing-futures = "0.2.3"
tracing-error = "0.1.2"