2020-09-24 09:53:21 -04:00
|
|
|
[package]
|
|
|
|
name = "lemmy_api"
|
2022-05-30 18:32:31 -04:00
|
|
|
version = "0.16.5"
|
2022-02-14 10:34:54 -05:00
|
|
|
edition = "2021"
|
2021-07-24 05:55:56 -04:00
|
|
|
description = "A link aggregator for the fediverse"
|
|
|
|
license = "AGPL-3.0"
|
2021-10-19 13:03:43 -04:00
|
|
|
homepage = "https://join-lemmy.org/"
|
|
|
|
documentation = "https://join-lemmy.org/docs/en/index.html"
|
2022-06-28 17:44:55 -04:00
|
|
|
rust-version = "1.57"
|
2020-09-24 09:53:21 -04:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "lemmy_api"
|
|
|
|
path = "src/lib.rs"
|
2021-02-25 14:43:39 -05:00
|
|
|
doctest = false
|
2020-09-24 09:53:21 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2022-05-30 18:32:31 -04:00
|
|
|
lemmy_apub = { version = "=0.16.5", path = "../apub" }
|
|
|
|
lemmy_utils = { version = "=0.16.5", path = "../utils" }
|
|
|
|
lemmy_db_schema = { version = "=0.16.5", path = "../db_schema", features = ["full"] }
|
|
|
|
lemmy_db_views = { version = "=0.16.5", path = "../db_views", features = ["full"] }
|
|
|
|
lemmy_db_views_moderator = { version = "=0.16.5", path = "../db_views_moderator", features = ["full"] }
|
|
|
|
lemmy_db_views_actor = { version = "=0.16.5", path = "../db_views_actor", features = ["full"] }
|
|
|
|
lemmy_api_common = { version = "=0.16.5", path = "../api_common", features = ["full"] }
|
|
|
|
lemmy_websocket = { version = "=0.16.5", path = "../websocket" }
|
2022-11-16 17:51:05 -05:00
|
|
|
activitypub_federation = "0.3.2"
|
2022-11-09 05:05:00 -05:00
|
|
|
diesel = "2.0.2"
|
2022-09-26 10:09:32 -04:00
|
|
|
bcrypt = "0.13.0"
|
|
|
|
chrono = { version = "0.4.22", features = ["serde"], default-features = false }
|
2022-11-09 05:05:00 -05:00
|
|
|
serde_json = { version = "1.0.87", features = ["preserve_order"] }
|
|
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
2022-09-26 10:09:32 -04:00
|
|
|
actix-web = { version = "4.2.1", default-features = false }
|
2022-11-09 05:05:00 -05:00
|
|
|
base64 = "0.13.1"
|
|
|
|
uuid = { version = "1.2.1", features = ["serde", "v4"] }
|
|
|
|
async-trait = "0.1.58"
|
2022-05-17 06:57:12 -04:00
|
|
|
captcha = "0.0.9"
|
2022-11-09 05:05:00 -05:00
|
|
|
anyhow = "1.0.66"
|
|
|
|
tracing = "0.1.37"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serial_test = "0.9.0"
|
|
|
|
tokio = "1.21.2"
|