]> Untitled Git - lemmy.git/blob - crates/api_crud/Cargo.toml
Add cargo metadata to all crates (#1853)
[lemmy.git] / crates / api_crud / Cargo.toml
1 [package]
2 name = "lemmy_api_crud"
3 version = "0.13.0"
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.13.0", path = "../apub" }
12 lemmy_apub_lib = { version = "=0.13.0", path = "../apub_lib" }
13 lemmy_utils = { version = "=0.13.0", path = "../utils" }
14 lemmy_db_queries = { version = "=0.13.0", path = "../db_queries" }
15 lemmy_db_schema = { version = "=0.13.0", path = "../db_schema" }
16 lemmy_db_views = { version = "=0.13.0", path = "../db_views" }
17 lemmy_db_views_moderator = { version = "=0.13.0", path = "../db_views_moderator" }
18 lemmy_db_views_actor = { version = "=0.13.0", path = "../db_views_actor" }
19 lemmy_api_common = { version = "=0.13.0", path = "../api_common" }
20 lemmy_websocket = { version = "=0.13.0", path = "../websocket" }
21 diesel = "1.4.8"
22 bcrypt = "0.10.1"
23 chrono = { version = "0.4.19", features = ["serde"] }
24 serde_json = { version = "1.0.68", features = ["preserve_order"] }
25 serde = { version = "1.0.130", features = ["derive"] }
26 actix = "0.12.0"
27 actix-web = { version = "4.0.0-beta.9", default-features = false }
28 actix-rt = { version = "2.2.0", default-features = false }
29 awc = { version = "3.0.0-beta.8", default-features = false }
30 log = "0.4.14"
31 rand = "0.8.4"
32 strum = "0.21.0"
33 strum_macros = "0.21.1"
34 lazy_static = "1.4.0"
35 url = { version = "2.2.2", features = ["serde"] }
36 openssl = "0.10.36"
37 http = "0.2.5"
38 http-signature-normalization-actix = { version = "0.5.0-beta.10", default-features = false, features = ["sha-2"] }
39 base64 = "0.13.0"
40 tokio = "1.12.0"
41 futures = "0.3.17"
42 itertools = "0.10.1"
43 uuid = { version = "0.8.2", features = ["serde", "v4"] }
44 sha2 = "0.9.8"
45 async-trait = "0.1.51"
46 anyhow = "1.0.44"
47 thiserror = "1.0.29"
48 background-jobs = "0.9.0"
49 reqwest = { version = "0.11.4", features = ["json"] }
50 webmention = "0.4.0"