]> Untitled Git - lemmy.git/blob - crates/api_crud/Cargo.toml
Merge remote-tracking branch 'yerba/split-api-crate' into test_merge_api_crates_reorg
[lemmy.git] / crates / api_crud / Cargo.toml
1 [package]
2 name = "lemmy_api_crud"
3 version = "0.1.0"
4 edition = "2018"
5
6 [dependencies]
7 lemmy_apub = { path = "../apub" }
8 lemmy_utils = { path = "../utils" }
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_moderator = { path = "../db_views_moderator" }
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.5"
17 bcrypt = "0.9.0"
18 chrono = { version = "0.4.19", features = ["serde"] }
19 serde_json = { version = "1.0.61", features = ["preserve_order"] }
20 serde = { version = "1.0.123", features = ["derive"] }
21 actix = "0.10.0"
22 actix-web = { version = "3.3.2", default-features = false }
23 actix-rt = { version = "1.1.1", default-features = false }
24 awc = { version = "2.0.3", default-features = false }
25 log = "0.4.14"
26 rand = "0.8.3"
27 strum = "0.20.0"
28 strum_macros = "0.20.1"
29 lazy_static = "1.4.0"
30 url = { version = "2.2.1", features = ["serde"] }
31 openssl = "0.10.32"
32 http = "0.2.3"
33 http-signature-normalization-actix = { version = "0.4.1", default-features = false, features = ["sha-2"] }
34 base64 = "0.13.0"
35 tokio = "0.3.6"
36 futures = "0.3.12"
37 itertools = "0.10.0"
38 uuid = { version = "0.8.2", features = ["serde", "v4"] }
39 sha2 = "0.9.3"
40 async-trait = "0.1.42"
41 captcha = "0.0.8"
42 anyhow = "1.0.38"
43 thiserror = "1.0.23"
44 background-jobs = "0.8.0"
45 reqwest = { version = "0.10.10", features = ["json"] }