[package]
edition = "2024"
name = "rustack-auth"
version = "0.6.0"
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AWS Signature Version 2 and 4 request authentication for Rustack"
readme = false
license = "MIT"
repository = "https://github.com/tyrchen/rustack"
[lib]
name = "rustack_auth"
path = "src/lib.rs"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.digest]
version = "0.10"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.http]
version = "1.4"
[dependencies.percent-encoding]
version = "2.3"
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.subtle]
version = "2.6"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1.50"
features = [
"rt-multi-thread",
"macros",
"signal",
"sync",
"time",
"io-util",
"fs",
"net",
]
[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"