mirror of
https://git.asonix.dog/asonix/http-signature-normalization.git
synced 2024-11-14 13:41:08 +00:00
25 lines
861 B
TOML
25 lines
861 B
TOML
[package]
|
|
name = "http-signature-normalization-reqwest"
|
|
version = "0.1.0"
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[features]
|
|
default = ["sha-2"]
|
|
digest = ["base64", "serde", "serde_json", "serde_urlencoded", "thiserror"]
|
|
sha-2 = ["digest", "sha2"]
|
|
|
|
[dependencies]
|
|
base64 = { version = "0.11.0", optional = true }
|
|
bytes = "0.5.3"
|
|
futures = "0.3.1"
|
|
chrono = "0.4.10"
|
|
http = "0.2.0"
|
|
http-signature-normalization = { version = "0.5.0", path = ".." }
|
|
reqwest = "0.10.1"
|
|
serde = { version = "1.0.104", features = ["derive"], optional = true }
|
|
serde_json = { version = "1.0.44", optional = true }
|
|
serde_urlencoded = { version = "0.6.1", optional = true }
|
|
sha2 = { version = "0.8.1", optional = true }
|
|
thiserror = { version = "1.0.9", optional = true }
|