]> Untitled Git - lemmy.git/blob - crates/api_crud/Cargo.toml
Fix prod deploy script and clippy (#1724)
[lemmy.git] / crates / api_crud / Cargo.toml
1 [package]
2 name = "lemmy_api_crud"
3 version = "0.11.4-rc.28"
4 edition = "2018"
5 description = "A link aggregator for the fediverse"
6 license = "AGPL-3.0"
7
8 [dependencies]
9 lemmy_apub = { version = "=0.11.4-rc.28", path = "../apub" }
10 lemmy_utils = { version = "=0.11.4-rc.28", path = "../utils" }
11 lemmy_db_queries = { version = "=0.11.4-rc.28", path = "../db_queries" }
12 lemmy_db_schema = { version = "=0.11.4-rc.28", path = "../db_schema" }
13 lemmy_db_views = { version = "=0.11.4-rc.28", path = "../db_views" }
14 lemmy_db_views_moderator = { version = "=0.11.4-rc.28", path = "../db_views_moderator" }
15 lemmy_db_views_actor = { version = "=0.11.4-rc.28", path = "../db_views_actor" }
16 lemmy_api_common = { version = "=0.11.4-rc.28", path = "../api_common" }
17 lemmy_websocket = { version = "=0.11.4-rc.28", path = "../websocket" }
18 diesel = "1.4.7"
19 bcrypt = "0.10.1"
20 chrono = { version = "0.4.19", features = ["serde"] }
21 serde_json = { version = "1.0.66", features = ["preserve_order"] }
22 serde = { version = "1.0.127", features = ["derive"] }
23 actix = "0.12.0"
24 actix-web = { version = "4.0.0-beta.8", default-features = false }
25 actix-rt = { version = "2.2.0", default-features = false }
26 awc = { version = "3.0.0-beta.7", default-features = false }
27 log = "0.4.14"
28 rand = "0.8.4"
29 strum = "0.21.0"
30 strum_macros = "0.21.1"
31 lazy_static = "1.4.0"
32 url = { version = "2.2.2", features = ["serde"] }
33 openssl = "0.10.36"
34 http = "0.2.4"
35 http-signature-normalization-actix = { version = "0.5.0-beta.7", default-features = false, features = ["sha-2"] }
36 base64 = "0.13.0"
37 tokio = "1.10.0"
38 futures = "0.3.16"
39 itertools = "0.10.1"
40 uuid = { version = "0.8.2", features = ["serde", "v4"] }
41 sha2 = "0.9.5"
42 async-trait = "0.1.51"
43 anyhow = "1.0.43"
44 thiserror = "1.0.26"
45 background-jobs = "0.9.0"
46 reqwest = { version = "0.11.4", features = ["json"] }