[package]
name = "httpsig-hyper"
version = "0.0.1"
edition = "2021"
description = "Hyper extension for http message signatures"
authors = ["Jun Kurihara"]
homepage = "https://github.com/junkurihara/httpsig-rs"
repository = "https://github.com/junkurihara/httpsig-rs"
license = "MIT"
readme = "../README.md"
[dependencies]
httpsig = { path = "../httpsig", version = "0.0.1" }
anyhow = { version = "1.0.79" }
tracing = { version = "0.1.40" }
async-trait = { version = "0.1.77" }
indexmap = { version = "2.2.2" }
fxhash = { version = "0.2.1" }
sha2 = { version = "0.10.8", default-features = false }
base64 = { version = "0.21.6" }
http = { version = "1.0.0" }
http-body = { version = "1.0.0" }
http-body-util = { version = "0.1.0" }
bytes = { version = "1.5.0" }
sfv = "0.9.4"
[dev-dependencies]
tokio = { version = "1.35.1", default-features = false, features = [
"macros",
"rt-multi-thread",
] }