[package] name = "sentential" version = "0.4.2" description = "An execution wrapper for sententially-driven Lambdas" authors = [ "Raymond Douglas ", "Brendan Keane " ] license-file = "LICENSE" documentation = "https://github.com/wheegee/entry" homepage = "https://github.com/wheegee/entry" repository = "https://github.com/wheegee/entry" edition = "2021" [[bin]] name = "entry" path = "src/main.rs" [profile.release] incremental = false # Disable incremental compilation opt-level = 'z' # Optimize for size lto = true # Enable link-tim optimization codegen-units = 1 # Reduce number of codegen units to increase optimizations panic = 'abort' # Abort on panic [dependencies] clap = { version = "3.2.17", features = ["derive", "env"] } serde_json = "1.0" http = "0.2" tokio = { version = "1", features = ["full"] } aws-smithy-http = "0.51.0" aws-config = "0.51.0" aws-sdk-ssm = "0.21.0"