mirror of
https://git.asonix.dog/asonix/http-signature-normalization.git
synced 2024-11-10 19:51:04 +00:00
51 lines
1.7 KiB
TOML
51 lines
1.7 KiB
TOML
[package]
|
|
name = "http-signature-normalization-actix"
|
|
description = "An HTTP Signatures library that leaves the signing to you"
|
|
version = "0.6.0-beta.4"
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
|
license-file = "LICENSE"
|
|
readme = "README.md"
|
|
repository = "https://git.asonix.dog/Aardwolf/http-signature-normalization"
|
|
keywords = ["http", "signatures", "digest", "actix"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[features]
|
|
default = ["server", "sha-2", "sha-3"]
|
|
client = ["awc"]
|
|
digest = ["base64"]
|
|
server = ["actix-web"]
|
|
sha-2 = ["digest", "sha2"]
|
|
sha-3 = ["digest", "sha3"]
|
|
|
|
[[example]]
|
|
name = "server"
|
|
required-features = ["server", "sha-2"]
|
|
|
|
[[example]]
|
|
name = "client"
|
|
required-features = ["client", "sha-2"]
|
|
|
|
[dependencies]
|
|
actix-http = { version = "=3.0.0-rc.1", default-features = false }
|
|
actix-rt = "2.6.0"
|
|
actix-web = { version = "=4.0.0-rc.2", default-features = false, optional = true }
|
|
awc = { version = "3.0.0-beta.20", default-features = false, optional = true }
|
|
base64 = { version = "0.13", optional = true }
|
|
futures-util = { version = "0.3", default-features = false }
|
|
http-signature-normalization = { version = "0.6.0", path = ".." }
|
|
sha2 = { version = "0.10", optional = true }
|
|
sha3 = { version = "0.10", optional = true }
|
|
thiserror = "1.0"
|
|
tokio = { version = "1", default-features = false, features = ["sync"] }
|
|
tracing = "0.1"
|
|
tracing-error = "0.2"
|
|
tracing-futures = "0.2"
|
|
|
|
[dev-dependencies]
|
|
actix-rt = "2.3.0"
|
|
tracing-actix-web = { version = "0.5.0-rc.2", git = "https://github.com/asonix/tracing-actix-web", branch = "asonix/opentelemetry-17" }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|