[package]
edition = "2024"
rust-version = "1.97.1"
name = "minco-aws-lambda"
version = "0.1.0"
authors = ["Minco Contributors"]
build = false
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native AWS Lambda HTTP runtime, API Gateway principal mapping, and SSM loading for Minco"
homepage = "https://github.com/xicv/minco"
documentation = "https://docs.rs/minco-aws-lambda"
readme = "README.md"
keywords = [
"minco",
"aws",
"lambda",
"serverless",
"axum",
]
categories = ["web-programming::http-server"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/xicv/minco"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "minco_aws_lambda"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.aws-config]
version = "1.9"
features = [
"default-https-client",
"rt-tokio",
]
default-features = false
[dependencies.aws-sdk-ssm]
version = "1"
features = [
"default-https-client",
"rt-tokio",
]
default-features = false
[dependencies.axum]
version = "0.8.9"
features = [
"json",
"macros",
]
[dependencies.lambda_http]
version = "1.3.0"
features = [
"apigw_http",
"tracing",
]
default-features = false
[dependencies.minco-http]
version = "0.1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[lints.clippy]
future_not_send = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_must_use = "deny"