]> Untitled Git - lemmy.git/blob - crates/api/Cargo.toml
ea3cd625c6d44b74d9cc0929e3f497b2ba4cc6a6
[lemmy.git] / crates / api / Cargo.toml
1 [package]
2 name = "lemmy_api"
3 version = "0.1.0"
4 edition = "2018"
5
6 [lib]
7 name = "lemmy_api"
8 path = "src/lib.rs"
9 doctest = false
10
11 [dependencies]
12 lemmy_apub = { path = "../apub" }
13 lemmy_utils = { path = "../utils" }
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_moderator = { path = "../db_views_moderator" }
18 lemmy_db_views_actor = { path = "../db_views_actor" }
19 lemmy_api_structs = { path = "../api_structs" }
20 lemmy_websocket = { path = "../websocket" }
21 diesel = "1.4.5"
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 openssl = "0.10.32"
37 http = "0.2.3"
38 http-signature-normalization-actix = { version = "0.4.1", default-features = false, features = ["sha-2"] }
39 base64 = "0.13.0"
40 tokio = "0.3.6"
41 futures = "0.3.12"
42 itertools = "0.10.0"
43 uuid = { version = "0.8.2", features = ["serde", "v4"] }
44 sha2 = "0.9.3"
45 async-trait = "0.1.42"
46 captcha = "0.0.8"
47 anyhow = "1.0.38"
48 thiserror = "1.0.23"
49 background-jobs = "0.8.0"
50 reqwest = { version = "0.10.10", features = ["json"] }