http-signature-normalization/http-signature-normalization-actix/Cargo.toml

42 lines
1.1 KiB
TOML
Raw Normal View History

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-02-10 21:45:51 +00:00
version = "0.5.0-beta.3"
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-02-10 21:45:51 +00:00
actix-web = { version = "4.0.0-beta.3", default-features = false }
awc = "3.0.0-beta.2"
base64 = { version = "0.13", optional = true }
chrono = "0.4.6"
futures = "0.3"
2020-09-30 00:10:31 +00:00
http-signature-normalization = { version = "0.5.1", path = ".." }
2020-03-20 02:36:10 +00:00
log = "0.4"
2020-06-10 22:15:19 +00:00
sha2 = { version = "0.9", optional = true }
sha3 = { version = "0.9", optional = true }
thiserror = "1.0"
2019-09-11 23:06:36 +00:00
[dev-dependencies]
2021-02-10 21:45:51 +00:00
actix-rt = "2.0.2"
pretty_env_logger = "0.4"