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"
|
2021-07-27 20:35:19 +00:00
|
|
|
version = "0.5.0-beta.7"
|
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]
|
2021-07-27 20:35:19 +00:00
|
|
|
actix-web = { version = "4.0.0-beta.8", default-features = false }
|
|
|
|
awc = { version = "3.0.0-beta.7", default-features = false }
|
2021-02-10 21:45:51 +00:00
|
|
|
base64 = { version = "0.13", optional = true }
|
2020-03-17 23:54:00 +00:00
|
|
|
chrono = "0.4.6"
|
2021-09-18 00:34:16 +00:00
|
|
|
futures-util = { version = "0.3", default-features = false }
|
2020-09-30 00:10:31 +00:00
|
|
|
http-signature-normalization = { version = "0.5.1", path = ".." }
|
2020-06-10 22:15:19 +00:00
|
|
|
sha2 = { version = "0.9", optional = true }
|
|
|
|
sha3 = { version = "0.9", optional = true }
|
2020-03-16 00:29:47 +00:00
|
|
|
thiserror = "1.0"
|
2021-09-18 00:34:16 +00:00
|
|
|
tokio = { version = "1", default-features = false, features = ["sync"] }
|
|
|
|
tracing = "0.1"
|
|
|
|
tracing-error = "0.1"
|
|
|
|
tracing-futures = "0.2"
|
2019-09-11 23:06:36 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-03-10 02:04:56 +00:00
|
|
|
actix-rt = "2.1.0"
|
2020-03-17 19:27:38 +00:00
|
|
|
pretty_env_logger = "0.4"
|