httpsig 0.0.1

Implementation of IETF draft of http message signatures
Documentation
[package]
name = "httpsig"
version = "0.0.1"
edition = "2021"
description = "Implementation of IETF draft of 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]
anyhow = { version = "1.0.79" }
tracing = { version = "0.1.40" }
rustc-hash = { version = "1.1.0" }
indexmap = { version = "2.2.2" }
fxhash = { version = "0.2.1" }
rand = { version = "0.8.5" }

# crypto
pkcs8 = { version = "0.10.2", default-features = false, features = ["pem"] }
spki = { version = "0.7.3", default-features = false, features = ["pem"] }
sec1 = { version = "0.7.3", default-features = false, features = ["der"] }
ed25519-compact = { version = "2.0.6", default-features = false, features = [
  "random",
] }
ecdsa = { version = "0.16.9", default-features = false, features = [
  "arithmetic",
] }
p256 = { version = "0.13.2", default-features = false, features = [
  "arithmetic",
  "ecdsa",
] }
p384 = { version = "0.13.0", default-features = false, features = [
  "arithmetic",
  "ecdsa",
] }
hmac = { version = "0.12.1" }
sha2 = { version = "0.10.8", default-features = false }

# encoding
base64 = { version = "0.21.6" }

# for rfc8941 structured field values
sfv = "0.9.4"