2020-09-24 13:53:21 +00:00
|
|
|
[package]
|
|
|
|
name = "lemmy_apub"
|
2021-10-22 17:26:00 +00:00
|
|
|
version = "0.13.5-rc.7"
|
2020-09-24 13:53:21 +00:00
|
|
|
edition = "2018"
|
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]
|
2021-10-22 17:26:00 +00:00
|
|
|
lemmy_utils = { version = "=0.13.5-rc.7", path = "../utils" }
|
|
|
|
lemmy_apub_lib = { version = "=0.13.5-rc.7", path = "../apub_lib" }
|
|
|
|
lemmy_db_schema = { version = "=0.13.5-rc.7", path = "../db_schema" }
|
|
|
|
lemmy_db_views = { version = "=0.13.5-rc.7", path = "../db_views" }
|
|
|
|
lemmy_db_views_actor = { version = "=0.13.5-rc.7", path = "../db_views_actor" }
|
|
|
|
lemmy_api_common = { version = "=0.13.5-rc.7", path = "../api_common" }
|
|
|
|
lemmy_websocket = { version = "=0.13.5-rc.7", path = "../websocket" }
|
2021-09-29 18:50:00 +00:00
|
|
|
diesel = "1.4.8"
|
2021-03-09 13:18:24 +00:00
|
|
|
activitystreams = "0.7.0-alpha.11"
|
2021-08-17 20:31:16 +00:00
|
|
|
bcrypt = "0.10.1"
|
2020-12-04 14:00:15 +00:00
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
2021-09-29 18:50:00 +00:00
|
|
|
serde_json = { version = "1.0.68", features = ["preserve_order"] }
|
|
|
|
serde = { version = "1.0.130", features = ["derive"] }
|
|
|
|
serde_with = "1.10.0"
|
2021-07-06 13:26:46 +00:00
|
|
|
actix = "0.12.0"
|
2021-09-29 18:50:00 +00:00
|
|
|
actix-web = { version = "4.0.0-beta.9", default-features = false }
|
2021-07-06 13:26:46 +00:00
|
|
|
actix-rt = { version = "2.2.0", default-features = false }
|
2021-09-29 18:50:00 +00:00
|
|
|
awc = { version = "3.0.0-beta.8", default-features = false }
|
2021-02-01 20:56:37 +00:00
|
|
|
log = "0.4.14"
|
2021-07-06 13:26:46 +00:00
|
|
|
rand = "0.8.4"
|
|
|
|
strum = "0.21.0"
|
|
|
|
strum_macros = "0.21.1"
|
|
|
|
url = { version = "2.2.2", features = ["serde"] }
|
2020-12-04 14:00:15 +00:00
|
|
|
percent-encoding = "2.1.0"
|
2021-09-29 18:50:00 +00:00
|
|
|
http = "0.2.5"
|
|
|
|
http-signature-normalization-actix = { version = "0.5.0-beta.10", default-features = false, features = ["server", "sha-2"] }
|
|
|
|
tokio = "1.12.0"
|
|
|
|
futures = "0.3.17"
|
2021-07-06 13:26:46 +00:00
|
|
|
itertools = "0.10.1"
|
2021-02-01 20:56:37 +00:00
|
|
|
uuid = { version = "0.8.2", features = ["serde", "v4"] }
|
2021-09-29 18:50:00 +00:00
|
|
|
sha2 = "0.9.8"
|
2021-08-17 20:31:16 +00:00
|
|
|
async-trait = "0.1.51"
|
2021-09-29 18:50:00 +00:00
|
|
|
anyhow = "1.0.44"
|
|
|
|
thiserror = "1.0.29"
|
2021-11-02 20:27:24 +00:00
|
|
|
background-jobs = "0.9.1"
|
2021-07-06 13:26:46 +00:00
|
|
|
reqwest = { version = "0.11.4", features = ["json"] }
|
2021-10-21 17:25:35 +00:00
|
|
|
html2md = "0.2.13"
|
2021-10-27 16:03:07 +00:00
|
|
|
lazy_static = "1.4.0"
|
2021-07-17 16:20:44 +00:00
|
|
|
|
2021-10-21 17:25:35 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
serial_test = "0.5.1"
|
2021-11-02 20:27:24 +00:00
|
|
|
assert-json-diff = "2.0.1"
|