]> Untitled Git - lemmy.git/blob - crates/api/Cargo.toml
Diesel 2.0.0 upgrade (#2452)
[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 = "2.0.0"
27 bcrypt = "0.13.0"
28 chrono = { version = "0.4.22", features = ["serde"], default-features = false }
29 serde_json = { version = "1.0.85", features = ["preserve_order"] }
30 serde = { version = "1.0.145", features = ["derive"] }
31 actix-web = { version = "4.2.1", default-features = false }
32 base64 = "0.13.0"
33 uuid = { version = "1.1.2", features = ["serde", "v4"] }
34 async-trait = "0.1.57"
35 captcha = "0.0.9"
36 anyhow = "1.0.65"
37 tracing = "0.1.36"