2019-09-11 05:17:30 +00:00
|
|
|
[package]
|
|
|
|
name = "http-signature-normalization"
|
|
|
|
description = "An HTTP Signatures library that leaves the signing to you"
|
2022-01-17 22:49:01 +00:00
|
|
|
version = "0.6.0"
|
2019-09-11 05:17:30 +00:00
|
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
2019-09-21 16:34:50 +00:00
|
|
|
license-file = "LICENSE"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://git.asonix.dog/Aardwolf/http-signature-normalization"
|
|
|
|
keywords = ["http", "signatures", "digest"]
|
2021-10-21 21:26:26 +00:00
|
|
|
edition = "2021"
|
2019-09-11 05:17:30 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2019-09-11 22:05:58 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"http-signature-normalization-actix",
|
2019-12-30 22:53:36 +00:00
|
|
|
"http-signature-normalization-http",
|
2020-01-18 00:35:30 +00:00
|
|
|
"http-signature-normalization-reqwest",
|
2021-09-18 00:32:45 +00:00
|
|
|
# "http-signature-normalization-warp",
|
2019-09-11 22:05:58 +00:00
|
|
|
]
|
|
|
|
|
2019-09-11 05:17:30 +00:00
|
|
|
[dependencies]
|
2022-01-17 22:49:01 +00:00
|
|
|
httpdate = "1"
|