lambda_runtime 0.6.1

AWS Lambda Runtime
Documentation
[package]
name = "lambda_runtime"
version = "0.6.1"
authors = [
    "David Calavera <dcalaver@amazon.com>",
    "Harold Sun <sunhua@amazon.com>"
]
description = "AWS Lambda Runtime"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
categories = ["web-programming::http-server"]
keywords = ["AWS", "Lambda", "API"]
readme = "../README.md"

[features]
default = ["simulated"]
simulated = []

[dependencies]
tokio = { version = "1.0", features = ["macros", "io-util", "sync", "rt-multi-thread"] }
# Hyper requires the `server` feature to work on nightly
hyper = { version = "0.14.20", features = ["http1", "client", "stream", "server"] }
futures = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "^1"
bytes = "1.0"
http = "0.2"
async-stream = "0.3"
tracing = { version = "0.1", features = ["log"] }
tower = { version = "0.4", features = ["util"] }
tokio-stream = "0.1.2"
lambda_runtime_api_client = { version = "0.6", path = "../lambda-runtime-api-client" }