2020-09-24 13:53:21 +00:00
|
|
|
[package]
|
|
|
|
name = "lemmy_apub"
|
2022-11-17 15:23:01 +00:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
documentation.workspace = true
|
2022-11-24 16:38:00 +00:00
|
|
|
repository.workspace = true
|
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-11-17 15:23:01 +00:00
|
|
|
lemmy_utils = { workspace = true }
|
|
|
|
lemmy_db_schema = { workspace = true, features = ["full"] }
|
|
|
|
lemmy_db_views = { workspace = true, features = ["full"] }
|
|
|
|
lemmy_db_views_actor = { workspace = true, features = ["full"] }
|
|
|
|
lemmy_api_common = { workspace = true, features = ["full"] }
|
|
|
|
activitypub_federation = { workspace = true }
|
|
|
|
diesel = { workspace = true }
|
|
|
|
chrono = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
actix-web = { workspace = true }
|
|
|
|
actix-rt = { workspace = true }
|
2023-04-13 10:53:55 +00:00
|
|
|
actix = { workspace = true }
|
2022-11-17 15:23:01 +00:00
|
|
|
tracing = { workspace = true }
|
|
|
|
strum_macros = { workspace = true }
|
|
|
|
url = { workspace = true }
|
|
|
|
http = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
itertools = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
|
|
|
sha2 = { workspace = true }
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
reqwest = { workspace = true }
|
|
|
|
once_cell = { workspace = true }
|
|
|
|
html2md = "0.2.13"
|
2023-04-26 04:26:10 +00:00
|
|
|
serde_with = { workspace = true }
|
2022-04-01 18:37:51 +00:00
|
|
|
http-signature-normalization-actix = { version = "0.6.1", default-features = false, features = ["server", "sha-2"] }
|
2022-11-16 22:51:05 +00:00
|
|
|
enum_delegate = "0.2.0"
|
2021-07-17 16:20:44 +00:00
|
|
|
|
2021-10-21 17:25:35 +00:00
|
|
|
[dev-dependencies]
|
2022-11-17 15:23:01 +00:00
|
|
|
serial_test = { workspace = true }
|
|
|
|
reqwest-middleware = { workspace = true }
|
2022-09-26 14:09:32 +00:00
|
|
|
task-local-extensions = "0.1.3"
|
2022-11-17 15:23:01 +00:00
|
|
|
assert-json-diff = "2.0.2"
|