2020-01-18 00:35:30 +00:00
|
|
|
[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
|
2020-03-16 00:29:47 +00:00
|
|
|
[features]
|
2020-09-29 23:57:59 +00:00
|
|
|
default = ["sha-2", "sha-3"]
|
|
|
|
digest = ["base64", "tokio"]
|
2020-03-16 00:29:47 +00:00
|
|
|
sha-2 = ["digest", "sha2"]
|
2020-09-29 23:57:59 +00:00
|
|
|
sha-3 = ["digest", "sha3"]
|
2020-01-18 00:35:30 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-09-29 23:57:59 +00:00
|
|
|
base64 = { version = "0.12", optional = true }
|
2020-03-16 00:29:47 +00:00
|
|
|
bytes = "0.5.3"
|
|
|
|
futures = "0.3.1"
|
2020-01-18 00:35:30 +00:00
|
|
|
chrono = "0.4.10"
|
|
|
|
http = "0.2.0"
|
2020-04-23 17:54:56 +00:00
|
|
|
http-signature-normalization = { version = "0.5.0", path = ".." }
|
2020-09-29 23:57:59 +00:00
|
|
|
reqwest = "0.10.8"
|
|
|
|
sha2 = { version = "0.9", optional = true }
|
|
|
|
sha3 = { version = "0.9", optional = true }
|
|
|
|
thiserror = "1.0"
|
|
|
|
tokio = { version = "0.2", default-features = false, features = ["rt-threaded", "blocking"], optional = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
pretty_env_logger = "0.4"
|
|
|
|
tokio = { version = "0.2", default-features = false, features = ["rt-threaded", "blocking", "macros"] }
|
|
|
|
time = "0.2"
|