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