[package]
edition = "2024"
name = "rustack-ses-http"
version = "0.9.0"
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SES HTTP service layer for Rustack (awsQuery + restJson1 protocol)"
readme = false
license = "MIT"
repository = "https://github.com/tyrchen/rustack"
[lib]
name = "rustack_ses_http"
path = "src/lib.rs"
[dependencies.bytes]
version = "1.11"
[dependencies.form_urlencoded]
version = "1.2"
[dependencies.http]
version = "1.4"
[dependencies.http-body]
version = "1.0"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1.9"
features = [
"server",
"http1",
"http2",
]
[dependencies.hyper-util]
version = "0.1"
features = [
"tokio",
"server-auto",
"server-graceful",
]
[dependencies.rustack-auth]
version = "0.9.0"
[dependencies.rustack-ses-model]
version = "0.9.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.52"
features = [
"rt-multi-thread",
"macros",
"signal",
"sync",
"time",
"io-util",
"fs",
"net",
"process",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.23"
features = ["v4"]
[lints.clippy]
collapsible_if = "allow"
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"