]> Untitled Git - lemmy.git/blob - crates/api_crud/Cargo.toml
12ea4305ccb3729ae89cf22d9c04e5ac8bd9fe9c
[lemmy.git] / crates / api_crud / Cargo.toml
1 [package]
2 name = "lemmy_api_crud"
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 [dependencies]
11 lemmy_apub = { version = "=0.16.5", path = "../apub" }
12 lemmy_utils = { version = "=0.16.5", path = "../utils" }
13 lemmy_db_schema = { version = "=0.16.5", path = "../db_schema", features = ["full"] }
14 lemmy_db_views = { version = "=0.16.5", path = "../db_views", features = ["full"] }
15 lemmy_db_views_actor = { version = "=0.16.5", path = "../db_views_actor", features = ["full"] }
16 lemmy_api_common = { version = "=0.16.5", path = "../api_common", features = ["full"] }
17 lemmy_websocket = { version = "=0.16.5", path = "../websocket" }
18 activitypub_federation = "0.2.0"
19 bcrypt = "0.12.1"
20 serde_json = { version = "1.0.79", features = ["preserve_order"] }
21 serde = { version = "1.0.136", features = ["derive"] }
22 actix-web = { version = "4.0.1", default-features = false }
23 tracing = "0.1.32"
24 url = { version = "2.2.2", features = ["serde"] }
25 async-trait = "0.1.53"
26 webmention = "0.4.0"