armature-lambda 0.3.1

AWS Lambda runtime adapter for Armature applications
Documentation
[package]
name = "armature-lambda"
version = "0.3.1"
edition = "2024"
rust-version = "1.94.1"
authors = ["Joseph Quinn <quinn.josephr@proton.me>"]
license = "Apache-2.0"
repository = "https://github.com/quinnjr/armature-lambda"
homepage = "https://quinnjr.github.io/armature"
description = "AWS Lambda runtime adapter for Armature applications"
keywords = ["lambda", "serverless", "aws", "armature", "api-gateway"]
categories = ["web-programming", "asynchronous"]

[dependencies]
# Armature core
armature-core = { version = "0.8" }

# AWS Lambda runtime
lambda_http = "1.2"
lambda_runtime = "1.2"

# AWS SDK (optional, for AWS service access)
armature-aws = { version = "0.2", optional = true }

# Async runtime
tokio = { version = "1.52", features = ["macros", "rt-multi-thread"] }
async-trait = "0.1"

# HTTP types
http = "1.4"
bytes = "1.12"

# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

# Error handling
thiserror = "2.0"

# Tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }

[dev-dependencies]
cargo-husky = { version = "1.5", default-features = false, features = ["user-hooks"] }
tokio = { version = "1.52", features = ["rt-multi-thread", "macros", "sync", "time", "net", "io-util", "fs", "test-util"] }

[features]
default = []
aws-services = ["armature-aws"]