[package]
edition = "2024"
name = "http-msgsign-draft"
version = "0.4.1"
authors = ["RechellaTek <reirokusanami.rdh@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Add functionality for draft-cavage-http-signatures-12 to http."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/ShuttlePub/http-msgsign"
[lib]
name = "http_msgsign_draft"
path = "src/lib.rs"
[[test]]
name = "test_digest_request"
path = "tests/test_digest_request.rs"
[[test]]
name = "test_digest_response"
path = "tests/test_digest_response.rs"
[[test]]
name = "test_sign_request"
path = "tests/test_sign_request.rs"
[dependencies.base64]
version = "^0.22"
[dependencies.bytes]
version = "^1"
[dependencies.http]
version = "^1"
[dependencies.http-body]
version = "^1"
[dependencies.http-body-util]
version = "^0.1"
[dependencies.http-content-digest]
version = "^0"
[dependencies.indexmap]
version = "^2"
[dependencies.thiserror]
version = "^2"
[dev-dependencies.rand]
version = "^0.8"
[dev-dependencies.rsa]
version = "0.9.8"
[dev-dependencies.sha2]
version = "0.10.8"
[dev-dependencies.tokio]
version = "^1"
features = [
"macros",
"rt-multi-thread",
]
default-features = false