apub/apub-reqwest/Cargo.toml
2021-11-29 21:43:54 -06:00

27 lines
881 B
TOML

[package]
name = "apub-reqwest"
description = "Utilities for building activitypub servers"
version = "0.1.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.1.0", path = "../apub-core/" }
async-trait = "0.1.51"
http-signature-normalization-reqwest = { version = "0.2.1", default-features = false, features = ["digest"] }
httpdate = "1.0.2"
reqwest = { version = "0.11.6", default-features = false, features = ["json"] }
serde = "1"
serde_json = "1"
thiserror = "1"
url = "2"
[dev-dependencies]
apub-rustcrypto = { version = "0.1.0", path = "../apub-rustcrypto/" }
rand = "0.8"
rsa = "0.5"