2019-12-30 22:53:36 +00:00
|
|
|
[package]
|
|
|
|
name = "http-signature-normalization-warp"
|
|
|
|
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-01-17 22:31:44 +00:00
|
|
|
[features]
|
|
|
|
default = ["sha-2"]
|
|
|
|
digest = ["base64", "serde", "serde_json", "serde_urlencoded", "thiserror"]
|
|
|
|
sha-2 = ["digest", "sha2"]
|
2019-12-30 22:53:36 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-01-17 22:31:44 +00:00
|
|
|
base64 = { version = "0.11.0", optional = true }
|
|
|
|
bytes = "0.5.3"
|
|
|
|
futures = "0.3.1"
|
2019-12-30 22:53:36 +00:00
|
|
|
http = "0.2.0"
|
2020-01-18 00:35:30 +00:00
|
|
|
http-signature-normalization-http = { version = "0.3.0", path = "../http-signature-normalization-http" }
|
2020-01-17 22:31:44 +00:00
|
|
|
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 }
|
|
|
|
warp = "0.2.0"
|