[package]
name = "aws-sigv4"
version = "0.13.1"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "David Barsky <me@davidbarsky.com>"]
description = "SigV4 signer for HTTP requests and Event Stream messages."
edition = "2021"
exclude = ["aws-sig-v4-test-suite/*"]
license = "Apache-2.0"
repository = "https://github.com/awslabs/smithy-rs"
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--cfg", "docsrs"]
[features]
sign-http = ["http", "percent-encoding", "form_urlencoded"]
sign-eventstream = ["aws-smithy-eventstream", "bytes"]
default = ["sign-http"]
[dependencies]
hex = "0.4"
once_cell = "1.8"
regex = "1.5"
ring = "0.16"
time = "0.3.5"
tracing = "0.1"
[dependencies.aws-smithy-eventstream]
path = "../aws-smithy-eventstream"
optional = true
version = "0.43.0"
[dependencies.aws-smithy-http]
path = "../aws-smithy-http"
version = "0.43.0"
[dependencies.bytes]
version = "1"
optional = true
[dependencies.form_urlencoded]
version = "1.0"
optional = true
[dependencies.http]
version = "0.2"
optional = true
[dependencies.percent-encoding]
version = "2.1"
optional = true
[dev-dependencies]
bytes = "1"
httparse = "1.5"
pretty_assertions = "1.0"
proptest = "1"
[dev-dependencies.time]
version = "0.3.4"
features = ["parsing"]