[package] name = "hegel" authors = ["Richard Chen (iochen.com)"] version = "0.1.1" edition = "2021" description = "AWS HTTP API Gateway Payload for Lambda" readme = "README.md" homepage = "https://github.com/iochen/hegel" repository = "https://github.com/iochen/hegel" license = "MIT" keywords = ["AWS", "API-Gateway", "Lambda", "Serverless", "Payload"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1.0.141", features = ["derive"] } lambda_runtime = "0.6.0" base64 = "0.13.0" infer = "0.9.0" chrono = { version = "0.4.19", optional = true } tokio = { version = "1.20.1", optional = true } serde_json = { version = "1.0.82", optional = true } [features] default = [ ] binary = ["dep:tokio", "dep:serde_json"] chrono = ["dep:chrono"]