cargo-lambda 0.20.2

Cargo subcommand to work with AWS Lambda
[package]
name = "cargo-lambda"
readme = "../../README.md"
rust-version.workspace = true
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
description.workspace = true

# Use cargo-edit(https://github.com/killercup/cargo-edit#installation)
# to manage dependencies.
# 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]
cargo-lambda-build.workspace = true
cargo-lambda-deploy.workspace = true
cargo-lambda-invoke.workspace = true
cargo-lambda-new.workspace = true
cargo-lambda-watch.workspace = true
clap = { workspace = true, features = ["suggestions"] }
miette = { workspace = true, features = ["fancy"] }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tracing.workspace = true
tracing-subscriber.workspace = true

[build-dependencies]
build-data = "0.1"

[dev-dependencies]
cargo-test-macro = { git = "https://github.com/rust-lang/cargo" }
cargo-test-support = { git = "https://github.com/rust-lang/cargo" }
dunce = "1.0.3"
snapbox = { version = "0.4.3", features = ["cmd", "debug"] }
zip.workspace = true