]> Untitled Git - lemmy.git/blob - crates/api_crud/Cargo.toml
cbbbe4b08887bdb3cafaa90d037e4ba9a998410b
[lemmy.git] / crates / api_crud / Cargo.toml
1 [package]
2 name = "lemmy_api_crud"
3 version = "0.14.4-rc.4"
4 edition = "2018"
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 [dependencies]
11 lemmy_apub = { version = "=0.14.4-rc.4", path = "../apub" }
12 lemmy_apub_lib = { version = "=0.14.4-rc.4", path = "../apub_lib" }
13 lemmy_utils = { version = "=0.14.4-rc.4", path = "../utils" }
14 lemmy_db_schema = { version = "=0.14.4-rc.4", path = "../db_schema" }
15 lemmy_db_views = { version = "=0.14.4-rc.4", path = "../db_views" }
16 lemmy_db_views_moderator = { version = "=0.14.4-rc.4", path = "../db_views_moderator" }
17 lemmy_db_views_actor = { version = "=0.14.4-rc.4", path = "../db_views_actor" }
18 lemmy_api_common = { version = "=0.14.4-rc.4", path = "../api_common" }
19 lemmy_websocket = { version = "=0.14.4-rc.4", path = "../websocket" }
20 diesel = "1.4.8"
21 bcrypt = "0.10.1"
22 chrono = { version = "0.4.19", features = ["serde"] }
23 serde_json = { version = "1.0.72", features = ["preserve_order"] }
24 serde = { version = "1.0.131", features = ["derive"] }
25 actix = "0.12.0"
26 actix-web = { version = "4.0.0-beta.14", default-features = false }
27 actix-rt = { version = "2.5.0", default-features = false }
28 tracing = "0.1.29"
29 rand = "0.8.4"
30 strum = "0.23.0"
31 strum_macros = "0.23.1"
32 url = { version = "2.2.2", features = ["serde"] }
33 openssl = "0.10.38"
34 http = "0.2.5"
35 http-signature-normalization-actix = { version = "0.5.0-beta.14", default-features = false, features = ["sha-2"] }
36 base64 = "0.13.0"
37 tokio = "1.14.0"
38 futures = "0.3.18"
39 itertools = "0.10.3"
40 uuid = { version = "0.8.2", features = ["serde", "v4"] }
41 sha2 = "0.10.0"
42 async-trait = "0.1.52"
43 anyhow = "1.0.51"
44 thiserror = "1.0.30"
45 background-jobs = "0.11.0"
46 reqwest = { version = "0.11.7", features = ["json"] }
47 webmention = "0.4.0"