mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
c7de1fcf24
* start to implement apub inbox routing lib * got something that almost works * it compiles! * implemented some more * move library code to separate crate (most of it) * convert private message handlers * convert all comment receivers (except undo comment) * convert post receiver * add verify trait * convert community receivers * add cc field for all activities which i forgot before * convert inbox functions, add missing checks * convert undo like/dislike receivers * convert undo_delete and undo_remove receivers * move block/unblock activities * convert remaining activity receivers * reimplement http signature verification and other checks * also use actor type for routing, VerifyActivity and SendActivity traits * cleanup and restructure apub_receive code * wip: try to fix activity routing * implement a (very bad) derive macro for activityhandler * working activity routing! * rework pm verify(), fix tests and confirm manually also remove inbox username check which was broken * rework following verify(), fix tests and test manually * fix post/comment create/update, rework voting * Rewrite remove/delete post/comment, fix tests, test manually * Rework and fix (un)block user, announce, update post * some code cleanup * rework delete/remove activity receivers (still quite messy) * rewrite, test and fix add/remove mod, update community handlers * add docs for ActivityHandler derive macro * dont try to compile macro comments
15 lines
422 B
TOML
15 lines
422 B
TOML
[package]
|
|
name = "lemmy_apub_lib"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
lemmy_utils = { path = "../utils" }
|
|
lemmy_websocket = { path = "../websocket" }
|
|
lemmy_apub_lib_derive = { path = "../apub_lib_derive" }
|
|
activitystreams = "0.7.0-alpha.11"
|
|
activitystreams-ext = "0.1.0-alpha.2"
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
|
async-trait = "0.1.42"
|
|
url = { version = "2.2.1", features = ["serde"] }
|