apub/apub-reqwest/Cargo.toml

29 lines
924 B
TOML
Raw Permalink Normal View History

2021-11-18 04:17:36 +00:00
[package]
name = "apub-reqwest"
2021-11-30 03:43:54 +00:00
description = "Utilities for building activitypub servers"
2021-12-05 21:19:45 +00:00
version = "0.2.0"
2021-11-30 03:43:54 +00:00
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
keywords = ["activitypub", "activitystreams", "federation", "async"]
2021-11-18 04:17:36 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-12-05 21:19:45 +00:00
apub-core = { version = "0.2.0", path = "../apub-core/" }
2021-11-28 02:06:53 +00:00
async-trait = "0.1.51"
2021-12-05 22:53:16 +00:00
http-signature-normalization-reqwest = { version = "0.3.0", default-features = false, features = ["digest", "middleware"] }
2021-11-18 04:17:36 +00:00
httpdate = "1.0.2"
reqwest = { version = "0.11.6", default-features = false, features = ["json"] }
2021-12-05 22:53:16 +00:00
reqwest-middleware = "0.1.2"
2021-11-18 04:17:36 +00:00
serde = "1"
serde_json = "1"
thiserror = "1"
url = "2"
2021-11-22 23:26:10 +00:00
[dev-dependencies]
2021-12-05 21:19:45 +00:00
apub-rustcrypto = { version = "0.2.0", path = "../apub-rustcrypto/" }
2021-11-22 23:26:10 +00:00
rand = "0.8"
rsa = "0.5"