lemmy/crates/apub_lib/Cargo.toml

32 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "lemmy_apub_lib"
2022-03-15 21:23:16 +00:00
version = "0.16.1"
edition = "2021"
2021-07-24 09:55:56 +00:00
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
homepage = "https://join-lemmy.org/"
documentation = "https://join-lemmy.org/docs/en/index.html"
[dependencies]
2022-03-15 21:23:16 +00:00
lemmy_utils = { version = "=0.16.1", path = "../utils" }
lemmy_apub_lib_derive = { version = "=0.16.1", path = "../apub_lib_derive" }
chrono = "0.4.19"
2021-12-14 13:30:37 +00:00
serde = { version = "1.0.131", features = ["derive"] }
async-trait = "0.1.52"
2021-08-17 20:31:16 +00:00
url = { version = "2.2.2", features = ["serde"] }
2021-12-14 13:30:37 +00:00
serde_json = { version = "1.0.72", features = ["preserve_order"] }
anyhow = "1.0.51"
reqwest = { version = "0.11.7", features = ["json"] }
reqwest-middleware = "0.1.3"
2021-11-23 12:16:47 +00:00
tracing = "0.1.29"
base64 = "0.13.0"
2021-12-14 13:30:37 +00:00
openssl = "0.10.38"
2021-11-22 18:58:31 +00:00
once_cell = "1.8.0"
http = "0.2.5"
2021-12-14 13:30:37 +00:00
sha2 = "0.10.0"
actix-web = { version = "4.0.0", default-features = false }
http-signature-normalization-actix = { version = "0.6.0-beta.6", default-features = false, features = ["server", "sha-2"] }
2021-12-14 13:30:37 +00:00
http-signature-normalization-reqwest = { version = "0.4.0", default-features = false, features = ["sha-2", "middleware"] }
2021-11-23 12:20:01 +00:00
background-jobs = "0.11.0"
2021-11-05 00:24:10 +00:00
diesel = "1.4.8"