2020-09-24 13:53:21 +00:00
|
|
|
[package]
|
|
|
|
name = "lemmy_apub"
|
2022-05-30 22:32:31 +00:00
|
|
|
version = "0.16.5"
|
2022-02-14 15:34:54 +00:00
|
|
|
edition = "2021"
|
2021-07-24 09:55:56 +00:00
|
|
|
description = "A link aggregator for the fediverse"
|
|
|
|
license = "AGPL-3.0"
|
2021-10-19 17:03:43 +00:00
|
|
|
homepage = "https://join-lemmy.org/"
|
|
|
|
documentation = "https://join-lemmy.org/docs/en/index.html"
|
2020-09-24 13:53:21 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "lemmy_apub"
|
|
|
|
path = "src/lib.rs"
|
2021-02-25 19:43:39 +00:00
|
|
|
doctest = false
|
2020-09-24 13:53:21 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-05-30 22:32:31 +00:00
|
|
|
lemmy_utils = { version = "=0.16.5", path = "../utils" }
|
|
|
|
lemmy_apub_lib = { version = "=0.16.5", path = "../apub_lib" }
|
|
|
|
lemmy_db_schema = { version = "=0.16.5", path = "../db_schema", features = ["full"] }
|
|
|
|
lemmy_db_views = { version = "=0.16.5", path = "../db_views", features = ["full"] }
|
|
|
|
lemmy_db_views_actor = { version = "=0.16.5", path = "../db_views_actor", features = ["full"] }
|
|
|
|
lemmy_api_common = { version = "=0.16.5", path = "../api_common", features = ["full"] }
|
|
|
|
lemmy_websocket = { version = "=0.16.5", path = "../websocket" }
|
2021-09-29 18:50:00 +00:00
|
|
|
diesel = "1.4.8"
|
2022-04-01 18:25:19 +00:00
|
|
|
activitystreams-kinds = "0.2.1"
|
2022-05-03 17:44:13 +00:00
|
|
|
chrono = { version = "0.4.19", features = ["serde"], default-features = false }
|
2022-04-01 18:37:51 +00:00
|
|
|
serde_json = { version = "1.0.79", features = ["preserve_order"] }
|
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
|
|
serde_with = "1.12.0"
|
2022-03-02 18:00:52 +00:00
|
|
|
actix = "0.13.0"
|
2022-04-01 18:37:51 +00:00
|
|
|
actix-web = { version = "4.0.1", default-features = false }
|
|
|
|
actix-rt = { version = "2.7.0", default-features = false }
|
|
|
|
tracing = "0.1.32"
|
|
|
|
strum_macros = "0.24.0"
|
2021-07-06 13:26:46 +00:00
|
|
|
url = { version = "2.2.2", features = ["serde"] }
|
2022-04-01 18:37:51 +00:00
|
|
|
http = "0.2.6"
|
|
|
|
http-signature-normalization-actix = { version = "0.6.1", default-features = false, features = ["server", "sha-2"] }
|
|
|
|
futures = "0.3.21"
|
2021-12-14 13:30:37 +00:00
|
|
|
itertools = "0.10.3"
|
2021-02-01 20:56:37 +00:00
|
|
|
uuid = { version = "0.8.2", features = ["serde", "v4"] }
|
2022-04-01 18:37:51 +00:00
|
|
|
sha2 = "0.10.2"
|
|
|
|
async-trait = "0.1.53"
|
|
|
|
anyhow = "1.0.56"
|
|
|
|
reqwest = { version = "0.11.10", features = ["json"] }
|
2021-10-21 17:25:35 +00:00
|
|
|
html2md = "0.2.13"
|
2022-04-01 18:37:51 +00:00
|
|
|
once_cell = "1.10.0"
|
|
|
|
parking_lot = "0.12.0"
|
2021-07-17 16:20:44 +00:00
|
|
|
|
2021-10-21 17:25:35 +00:00
|
|
|
[dev-dependencies]
|
2022-04-01 18:37:51 +00:00
|
|
|
serial_test = "0.6.0"
|
2021-11-02 20:27:24 +00:00
|
|
|
assert-json-diff = "2.0.1"
|
2022-04-01 18:37:51 +00:00
|
|
|
reqwest-middleware = "0.1.5"
|