httpsig-hyper 0.0.1

Hyper extension for http message signatures
Documentation
[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"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[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" }

# content digest
sha2 = { version = "0.10.8", default-features = false }

# encoding
base64 = { version = "0.21.6" }

# for request and response headers
http = { version = "1.0.0" }
http-body = { version = "1.0.0" }
http-body-util = { version = "0.1.0" }
bytes = { version = "1.5.0" }

# for rfc8941 structured field values
sfv = "0.9.4"

[dev-dependencies]
tokio = { version = "1.35.1", default-features = false, features = [
  "macros",
  "rt-multi-thread",
] } # testing only?