2019-02-28 06:02:55 +00:00
|
|
|
[package]
|
2019-05-03 01:34:21 +00:00
|
|
|
name = "lemmy_server"
|
2021-11-26 12:38:55 +00:00
|
|
|
version = "0.14.4-rc.4"
|
2019-06-03 17:47:12 +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/"
|
2021-07-24 09:55:56 +00:00
|
|
|
documentation = "https://join-lemmy.org/docs/en/index.html"
|
2019-04-06 05:29:20 +00:00
|
|
|
|
2021-02-25 19:43:39 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2021-01-13 17:10:21 +00:00
|
|
|
[profile.dev]
|
|
|
|
debug = 0
|
|
|
|
|
2020-07-10 18:15:41 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2021-01-20 15:21:27 +00:00
|
|
|
"crates/api",
|
2021-03-25 19:19:40 +00:00
|
|
|
"crates/api_crud",
|
|
|
|
"crates/api_common",
|
Apub inbox rewrite (#1652)
* 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
2021-07-17 16:08:46 +00:00
|
|
|
"crates/apub_lib",
|
|
|
|
"crates/apub_lib_derive",
|
2021-01-20 15:21:27 +00:00
|
|
|
"crates/apub",
|
|
|
|
"crates/utils",
|
|
|
|
"crates/db_schema",
|
|
|
|
"crates/db_views",
|
|
|
|
"crates/db_views_actor",
|
|
|
|
"crates/db_views_actor",
|
|
|
|
"crates/websocket",
|
2021-02-09 18:26:06 +00:00
|
|
|
"crates/routes"
|
2020-07-10 18:15:41 +00:00
|
|
|
]
|
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
[dependencies]
|
2021-11-26 12:38:55 +00:00
|
|
|
lemmy_api = { version = "=0.14.4-rc.4", path = "./crates/api" }
|
|
|
|
lemmy_api_crud = { version = "=0.14.4-rc.4", path = "./crates/api_crud" }
|
|
|
|
lemmy_apub = { version = "=0.14.4-rc.4", path = "./crates/apub" }
|
|
|
|
lemmy_apub_lib = { version = "=0.14.4-rc.4", path = "./crates/apub_lib" }
|
|
|
|
lemmy_utils = { version = "=0.14.4-rc.4", path = "./crates/utils" }
|
|
|
|
lemmy_db_schema = { version = "=0.14.4-rc.4", path = "./crates/db_schema" }
|
|
|
|
lemmy_db_views = { version = "=0.14.4-rc.4", path = "./crates/db_views" }
|
|
|
|
lemmy_db_views_moderator = { version = "=0.14.4-rc.4", path = "./crates/db_views_moderator" }
|
|
|
|
lemmy_db_views_actor = { version = "=0.14.4-rc.4", path = "./crates/db_views_actor" }
|
|
|
|
lemmy_api_common = { version = "=0.14.4-rc.4", path = "crates/api_common" }
|
|
|
|
lemmy_websocket = { version = "=0.14.4-rc.4", path = "./crates/websocket" }
|
|
|
|
lemmy_routes = { version = "=0.14.4-rc.4", path = "./crates/routes" }
|
2021-09-29 18:50:00 +00:00
|
|
|
diesel = "1.4.8"
|
2020-12-04 14:00:15 +00:00
|
|
|
diesel_migrations = "1.4.0"
|
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
2021-09-29 18:50:00 +00:00
|
|
|
serde = { version = "1.0.130", features = ["derive"] }
|
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, features = ["rustls"] }
|
2021-11-23 12:16:47 +00:00
|
|
|
tracing = "0.1.29"
|
|
|
|
tracing-actix-web = "0.5.0-beta.2"
|
|
|
|
tracing-error = "0.2.0"
|
|
|
|
tracing-log = "0.1.2"
|
|
|
|
tracing-subscriber = { version = "0.3.2", features = ["env-filter"] }
|
2021-07-06 13:26:46 +00:00
|
|
|
strum = "0.21.0"
|
|
|
|
url = { version = "2.2.2", features = ["serde"] }
|
2021-08-17 20:31:16 +00:00
|
|
|
openssl = "0.10.36"
|
2021-09-29 18:50:00 +00:00
|
|
|
http-signature-normalization-actix = { version = "0.5.0-beta.10", default-features = false, features = ["sha-2"] }
|
|
|
|
tokio = { version = "1.12.0", features = ["sync"] }
|
|
|
|
anyhow = "1.0.44"
|
2021-07-06 13:26:46 +00:00
|
|
|
reqwest = { version = "0.11.4", features = ["json"] }
|
|
|
|
activitystreams = "0.7.0-alpha.11"
|
|
|
|
actix-rt = { version = "2.2.0", default-features = false }
|
2021-09-29 18:50:00 +00:00
|
|
|
serde_json = { version = "1.0.68", features = ["preserve_order"] }
|
2021-07-06 13:26:46 +00:00
|
|
|
clokwerk = "0.3.5"
|
2021-10-08 15:07:24 +00:00
|
|
|
doku = "0.10.1"
|
2020-09-15 19:26:47 +00:00
|
|
|
|
|
|
|
[dev-dependencies.cargo-husky]
|
2020-12-04 14:00:15 +00:00
|
|
|
version = "1.5.0"
|
2020-09-15 19:26:47 +00:00
|
|
|
default-features = false # Disable features which are enabled by default
|
2021-10-21 16:57:09 +00:00
|
|
|
features = ["user-hooks"]
|
2021-08-17 20:31:16 +00:00
|
|
|
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
|
|
development = ["cargo-husky"]
|