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