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