]> Untitled Git - lemmy.git/blob - crates/apub/Cargo.toml
Split api crate into api_structs and api
[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_db_queries = { path = "../db_queries" }
14 lemmy_db_schema = { path = "../db_schema" }
15 lemmy_db_views = { path = "../db_views" }
16 lemmy_db_views_actor = { path = "../db_views_actor" }
17 lemmy_api_common = { path = "../api_common" }
18 lemmy_websocket = { path = "../websocket" }
19 diesel = "1.4.5"
20 activitystreams = "0.7.0-alpha.11"
21 activitystreams-ext = "0.1.0-alpha.2"
22 bcrypt = "0.9.0"
23 chrono = { version = "0.4.19", features = ["serde"] }
24 serde_json = { version = "1.0.61", features = ["preserve_order"] }
25 serde = { version = "1.0.123", features = ["derive"] }
26 actix = "0.10.0"
27 actix-web = { version = "3.3.2", default-features = false }
28 actix-rt = { version = "1.1.1", default-features = false }
29 awc = { version = "2.0.3", default-features = false }
30 log = "0.4.14"
31 rand = "0.8.3"
32 strum = "0.20.0"
33 strum_macros = "0.20.1"
34 lazy_static = "1.4.0"
35 url = { version = "2.2.1", features = ["serde"] }
36 percent-encoding = "2.1.0"
37 openssl = "0.10.32"
38 http = "0.2.3"
39 http-signature-normalization-actix = { version = "0.4.1", default-features = false, features = ["sha-2"] }
40 http-signature-normalization-reqwest = { version = "0.1.3", default-features = false, features = ["sha-2"] }
41 base64 = "0.13.0"
42 tokio = "0.3.6"
43 futures = "0.3.12"
44 itertools = "0.10.0"
45 uuid = { version = "0.8.2", features = ["serde", "v4"] }
46 sha2 = "0.9.3"
47 async-trait = "0.1.42"
48 anyhow = "1.0.38"
49 thiserror = "1.0.23"
50 background-jobs = "0.8.0"
51 reqwest = { version = "0.10.10", features = ["json"] }
52 backtrace = "0.3.56"