]> Untitled Git - lemmy.git/blob - crates/api/Cargo.toml
2b80f16e06601b5cd976d9539c1f4bbdeb4bfd0f
[lemmy.git] / crates / api / Cargo.toml
1 [package]
2 name = "lemmy_api"
3 version = "0.16.5"
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 rust-version = "1.57"
10
11 [lib]
12 name = "lemmy_api"
13 path = "src/lib.rs"
14 doctest = false
15
16 [dependencies]
17 lemmy_apub = { version = "=0.16.5", path = "../apub" }
18 lemmy_utils = { version = "=0.16.5", path = "../utils" }
19 lemmy_db_schema = { version = "=0.16.5", path = "../db_schema", features = ["full"] }
20 lemmy_db_views = { version = "=0.16.5", path = "../db_views", features = ["full"] }
21 lemmy_db_views_moderator = { version = "=0.16.5", path = "../db_views_moderator", features = ["full"] }
22 lemmy_db_views_actor = { version = "=0.16.5", path = "../db_views_actor", features = ["full"] }
23 lemmy_api_common = { version = "=0.16.5", path = "../api_common", features = ["full"] }
24 lemmy_websocket = { version = "=0.16.5", path = "../websocket" }
25 activitypub_federation = "0.2.0"
26 diesel = "1.4.8"
27 bcrypt = "0.12.1"
28 chrono = { version = "0.4.19", features = ["serde"], default-features = false }
29 serde_json = { version = "1.0.79", features = ["preserve_order"] }
30 serde = { version = "1.0.136", features = ["derive"] }
31 actix-web = { version = "4.0.1", default-features = false }
32 base64 = "0.13.0"
33 uuid = { version = "0.8.2", features = ["serde", "v4"] }
34 async-trait = "0.1.53"
35 captcha = "0.0.9"
36 anyhow = "1.0.56"
37 tracing = "0.1.32"