[package] name = "http-signature-normalization-reqwest" description = "An HTTP Signatures library that leaves the signing to you" version = "0.2.0" authors = ["asonix "] license-file = "LICENSE" readme = "README.md" repository = "https://git.asonix.dog/Aardwolf/http-signature-normalization" keywords = ["http", "signatures", "digest", "reqwest"] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["sha-2", "sha-3"] digest = ["base64", "tokio"] sha-2 = ["digest", "sha2"] sha-3 = ["digest", "sha3"] [[example]] name = "client" required-features = ["sha-2"] [dependencies] base64 = { version = "0.13", optional = true } bytes = "1" futures = "0.3.1" chrono = "0.4.10" http = "0.2.0" http-signature-normalization = { version = "0.5.1", path = ".." } reqwest = "0.11" sha2 = { version = "0.9", optional = true } sha3 = { version = "0.9", optional = true } thiserror = "1.0" tokio = { version = "1", default-features = false, features = ["rt"], optional = true } [dev-dependencies] pretty_env_logger = "0.4" tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros"] } time = "0.2"