2019-09-11 22:05:58 +00:00
|
|
|
[package]
|
|
|
|
name = "http-signature-normalization-actix"
|
|
|
|
description = "An HTTP Signatures library that leaves the signing to you"
|
2020-03-25 16:00:37 +00:00
|
|
|
version = "0.3.0-alpha.8"
|
2019-09-11 22:05:58 +00:00
|
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
2019-09-21 16:26:11 +00:00
|
|
|
license-file = "LICENSE"
|
|
|
|
readme = "README.md"
|
2019-09-21 16:34:50 +00:00
|
|
|
repository = "https://git.asonix.dog/Aardwolf/http-signature-normalization"
|
|
|
|
keywords = ["http", "signatures", "digest", "actix"]
|
2019-09-11 22:05:58 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2019-09-11 23:49:18 +00:00
|
|
|
[features]
|
2019-09-21 16:26:11 +00:00
|
|
|
default = ["sha-2", "sha-3"]
|
2020-03-20 02:36:10 +00:00
|
|
|
digest = ["base64"]
|
2019-09-13 01:12:35 +00:00
|
|
|
sha-2 = ["digest", "sha2"]
|
|
|
|
sha-3 = ["digest", "sha3"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "server"
|
|
|
|
required-features = ["sha-2"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "client"
|
|
|
|
required-features = ["sha-2"]
|
2019-09-11 22:05:58 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-03-16 00:29:47 +00:00
|
|
|
actix-web = "3.0.0-alpha.1"
|
|
|
|
actix-http = "2.0.0-alpha.2"
|
|
|
|
base64 = { version = "0.11", optional = true }
|
|
|
|
bytes = "0.5.4"
|
2020-03-17 23:54:00 +00:00
|
|
|
chrono = "0.4.6"
|
2020-03-16 00:29:47 +00:00
|
|
|
futures = "0.3"
|
2020-03-20 02:36:10 +00:00
|
|
|
http-signature-normalization = { version = "0.4.1", path = ".." }
|
|
|
|
log = "0.4"
|
2019-09-13 01:12:35 +00:00
|
|
|
sha2 = { version = "0.8", optional = true }
|
|
|
|
sha3 = { version = "0.8", optional = true }
|
2020-03-16 00:29:47 +00:00
|
|
|
thiserror = "1.0"
|
2019-09-11 23:06:36 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-03-16 00:29:47 +00:00
|
|
|
actix = "0.10.0-alpha.1"
|
|
|
|
actix-rt = "1.0.0"
|
2020-03-17 19:27:38 +00:00
|
|
|
pretty_env_logger = "0.4"
|