2022-11-29 00:02:17 +00:00
|
|
|
[package]
|
|
|
|
name = "http-signature-normalization-actix-extractor"
|
2022-11-29 01:45:39 +00:00
|
|
|
description = "An HTTP Signatures library that leaves the signing to you"
|
2022-12-08 21:08:18 +00:00
|
|
|
version = "0.2.0"
|
2022-11-29 01:43:11 +00:00
|
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
|
|
|
license = "AGPL-3.0"
|
2022-11-29 01:45:39 +00:00
|
|
|
readme = "README.md"
|
2022-11-29 01:43:11 +00:00
|
|
|
repository = "https://git.asonix.dog/asonix/http-signature-normalization"
|
2022-11-29 01:49:04 +00:00
|
|
|
documentation = "https://docs.rs/http-signature-normalization-actix-extractor"
|
2022-11-29 01:43:11 +00:00
|
|
|
keywords = ["http", "signatures", "digest", "actix"]
|
2022-11-29 00:02:17 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
|
|
default = ["sha-2"]
|
|
|
|
sha-2 = ["base64", "sha2", "subtle"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
base64 = { version = "0.13", optional = true }
|
|
|
|
actix-web = { version = "4", default-features = false }
|
|
|
|
actix-web-lab = "0.18.5"
|
|
|
|
async-trait = "0.1.58"
|
2022-12-08 21:08:18 +00:00
|
|
|
http-signature-normalization = { version = "0.7", path = "../" }
|
2022-11-29 00:02:17 +00:00
|
|
|
sha2 = { version = "0.10", optional = true }
|
|
|
|
subtle = { version = "2.4.1", optional = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
actix-web = { version = "4", features = ["macros"] }
|
2022-11-29 01:36:50 +00:00
|
|
|
openssl = "0.10.43"
|
2022-11-29 00:02:17 +00:00
|
|
|
thiserror = "1"
|