]> Untitled Git - lemmy.git/blob - crates/apub_receive/Cargo.toml
Apub inbox rewrite (#1652)
[lemmy.git] / crates / apub_receive / Cargo.toml
1 [package]
2 name = "lemmy_apub_receive"
3 version = "0.1.0"
4 edition = "2018"
5
6 [dependencies]
7 lemmy_utils = { path = "../utils" }
8 lemmy_apub_lib = { path = "../apub_lib" }
9 lemmy_apub = { path = "../apub" }
10 lemmy_db_queries = { path = "../db_queries" }
11 lemmy_db_schema = { path = "../db_schema" }
12 lemmy_db_views = { path = "../db_views" }
13 lemmy_db_views_actor = { path = "../db_views_actor" }
14 lemmy_api_common = { path = "../api_common" }
15 lemmy_websocket = { path = "../websocket" }
16 diesel = "1.4.7"
17 activitystreams = "0.7.0-alpha.11"
18 activitystreams-ext = "0.1.0-alpha.2"
19 bcrypt = "0.10.0"
20 chrono = { version = "0.4.19", features = ["serde"] }
21 serde_json = { version = "1.0.64", features = ["preserve_order"] }
22 serde = { version = "1.0.126", features = ["derive"] }
23 actix = "0.12.0"
24 actix-web = { version = "4.0.0-beta.8", default-features = false }
25 actix-rt = { version = "2.2.0", default-features = false }
26 awc = { version = "3.0.0-beta.7", default-features = false }
27 log = "0.4.14"
28 rand = "0.8.4"
29 strum = "0.21.0"
30 strum_macros = "0.21.1"
31 url = { version = "2.2.2", features = ["serde"] }
32 percent-encoding = "2.1.0"
33 openssl = "0.10.35"
34 http = "0.2.4"
35 http-signature-normalization-actix = { version = "0.5.0-beta.6", default-features = false, features = ["sha-2"] }
36 http-signature-normalization-reqwest = { version = "0.2.0", default-features = false, features = ["sha-2"] }
37 base64 = "0.13.0"
38 tokio = "1.8.0"
39 futures = "0.3.15"
40 itertools = "0.10.1"
41 sha2 = "0.9.5"
42 async-trait = "0.1.50"
43 anyhow = "1.0.41"
44 thiserror = "1.0.26"
45 backtrace = "0.3.60"
46