apub/apub-reqwest/Cargo.toml
Aode (lion) 2194d8fc1b
All checks were successful
continuous-integration/drone/push Build is passing
Reqwest: use middleware
2021-12-05 16:53:16 -06:00

29 lines
924 B
TOML

[package]
name = "apub-reqwest"
description = "Utilities for building activitypub servers"
version = "0.2.0"
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
keywords = ["activitypub", "activitystreams", "federation", "async"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apub-core = { version = "0.2.0", path = "../apub-core/" }
async-trait = "0.1.51"
http-signature-normalization-reqwest = { version = "0.3.0", default-features = false, features = ["digest", "middleware"] }
httpdate = "1.0.2"
reqwest = { version = "0.11.6", default-features = false, features = ["json"] }
reqwest-middleware = "0.1.2"
serde = "1"
serde_json = "1"
thiserror = "1"
url = "2"
[dev-dependencies]
apub-rustcrypto = { version = "0.2.0", path = "../apub-rustcrypto/" }
rand = "0.8"
rsa = "0.5"