]> Untitled Git - lemmy.git/blob - crates/api/Cargo.toml
Run cargo upgrade (#2176)
[lemmy.git] / crates / api / Cargo.toml
1 [package]
2 name = "lemmy_api"
3 version = "0.16.2"
4 edition = "2021"
5 description = "A link aggregator for the fediverse"
6 license = "AGPL-3.0"
7 homepage = "https://join-lemmy.org/"
8 documentation = "https://join-lemmy.org/docs/en/index.html"
9
10 [lib]
11 name = "lemmy_api"
12 path = "src/lib.rs"
13 doctest = false
14
15 [dependencies]
16 lemmy_apub = { version = "=0.16.2", path = "../apub" }
17 lemmy_apub_lib = { version = "=0.16.2", path = "../apub_lib" }
18 lemmy_utils = { version = "=0.16.2", path = "../utils" }
19 lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
20 lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
21 lemmy_db_views_moderator = { version = "=0.16.2", path = "../db_views_moderator" }
22 lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
23 lemmy_api_common = { version = "=0.16.2", path = "../api_common" }
24 lemmy_websocket = { version = "=0.16.2", path = "../websocket" }
25 diesel = "1.4.8"
26 bcrypt = "0.12.1"
27 chrono = { version = "0.4.19", features = ["serde"] }
28 serde_json = { version = "1.0.79", features = ["preserve_order"] }
29 serde = { version = "1.0.136", features = ["derive"] }
30 actix = "0.13.0"
31 actix-web = { version = "4.0.1", default-features = false }
32 actix-rt = { version = "2.7.0", default-features = false }
33 rand = "0.8.5"
34 strum = "0.24.0"
35 strum_macros = "0.24.0"
36 url = { version = "2.2.2", features = ["serde"] }
37 openssl = "0.10.38"
38 http = "0.2.6"
39 http-signature-normalization-actix = { version = "0.6.1", default-features = false, features = ["sha-2"] }
40 base64 = "0.13.0"
41 tokio = "1.17.0"
42 futures = "0.3.21"
43 itertools = "0.10.3"
44 uuid = { version = "0.8.2", features = ["serde", "v4"] }
45 sha2 = "0.10.2"
46 async-trait = "0.1.53"
47 captcha = "0.0.8"
48 anyhow = "1.0.56"
49 thiserror = "1.0.30"
50 tracing = "0.1.32"
51 background-jobs = "0.12.0"
52 reqwest = { version = "0.11.10", features = ["json"] }