[package] name = "aws-lambda-runtime-proxy" version = "0.3.0" edition = "2021" authors = ["DiscreteTom "] description = "A helper lib to customize the communication between the lambda handler process and the lambda runtime api." repository = "https://github.com/DiscreteTom/aws-lambda-runtime-proxy" keywords = ["aws", "lambda", "runtime", "proxy"] license-file = "LICENSE" exclude = [ "benchmark/*", "examples/*", "img/*", ".gitignore", "CHANGELOG.md", "rustfmt.toml", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] hyper = { version = "1", features = ["client", "http1", "server"] } tokio = { version = "1", features = ["process", "rt", "net"] } hyper-util = { version = "0.1.3", features = ["tokio"] } http-body-util = "0.1.1" tracing = { version = "0.1", features = ["log"] } anyhow = "1" [dev-dependencies] tokio = { version = "1", features = ["full"] }