]> Untitled Git - lemmy.git/blob - crates/api_crud/Cargo.toml
Diesel 2.0.0 upgrade (#2452)
[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 rust-version = "1.57"
10
11 [dependencies]
12 lemmy_apub = { version = "=0.16.5", path = "../apub" }
13 lemmy_utils = { version = "=0.16.5", path = "../utils" }
14 lemmy_db_schema = { version = "=0.16.5", path = "../db_schema", features = ["full"] }
15 lemmy_db_views = { version = "=0.16.5", path = "../db_views", features = ["full"] }
16 lemmy_db_views_actor = { version = "=0.16.5", path = "../db_views_actor", features = ["full"] }
17 lemmy_api_common = { version = "=0.16.5", path = "../api_common", features = ["full"] }
18 lemmy_websocket = { version = "=0.16.5", path = "../websocket" }
19 activitypub_federation = "0.2.0"
20 bcrypt = "0.13.0"
21 serde_json = { version = "1.0.85", features = ["preserve_order"] }
22 serde = { version = "1.0.145", features = ["derive"] }
23 actix-web = { version = "4.2.1", default-features = false }
24 tracing = "0.1.36"
25 url = { version = "2.3.1", features = ["serde"] }
26 async-trait = "0.1.57"
27 webmention = "0.4.0"