[package] name = "test-handler" 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_runtime = "0.6.0" serde = "1.0.136" tokio = { version = "1", features = ["macros"] } tracing = { version = "0.1", features = ["log"] } tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt"] } [[bin]] name = "function_a" path = "src/function_a.rs" [[bin]] name = "function_b" path = "src/function_b.rs"