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

23 lines
679 B
TOML

[package]
name = "http-signature-normalization-actix-extractor"
version = "0.1.0"
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"
http-signature-normalization = { version = "0.6", path = "../" }
sha2 = { version = "0.10", optional = true }
subtle = { version = "2.4.1", optional = true }
[dev-dependencies]
actix-web = { version = "4", features = ["macros"] }
thiserror = "1"