http-signature-normalization/Cargo.toml

25 lines
706 B
TOML
Raw Normal View History

2019-09-11 05:17:30 +00:00
[package]
name = "http-signature-normalization"
description = "An HTTP Signatures library that leaves the signing to you"
version = "0.5.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"]
2019-09-11 05:17:30 +00:00
edition = "2018"
# 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",
2019-12-30 22:53:36 +00:00
"http-signature-normalization-warp",
2019-09-11 22:05:58 +00:00
]
2019-09-11 05:17:30 +00:00
[dependencies]
chrono = "0.4"
thiserror = "1.0"