[package]
edition = "2021"
rust-version = "1.85"
name = "wimsey-httpsig"
version = "0.4.0"
authors = ["The wimsey authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WIMSE workload-to-workload auth using HTTP Message Signatures (RFC 9421)."
homepage = "https://github.com/kanywst/wimsey"
readme = "README.md"
keywords = [
"wimse",
"workload-identity",
"spiffe",
"wit",
"jose",
]
categories = [
"authentication",
"cryptography",
]
license = "Apache-2.0"
repository = "https://github.com/kanywst/wimsey"
[lib]
name = "wimsey_httpsig"
path = "src/lib.rs"
[dependencies.base64]
version = "0.23"
[dependencies.ed25519-dalek]
version = "3"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.wimsey-jose]
version = "0.4.0"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"