[package] name = "axum-on-aws-lambda" version = "0.1.0" edition = "2021" # Starting in Rust 1.62 you can use `cargo add` to add dependencies # to your project. # # If you're using an older Rust version, # download cargo-edit(https://github.com/killercup/cargo-edit#installation) # to install the `add` subcommand. # # Running `cargo add DEPENDENCY_NAME` will # add the latest version of a dependency to the list, # and it will keep the alphabetic ordering for you. [dependencies] lambda_http = "0.7" lambda_runtime = "0.7" tokio = { version = "1", features = ["macros"] } axum = "0.6" serde_json = "1" #tracing = { version = "0.1", features = ["log"] } #tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt"] }