]> Untitled Git - lemmy.git/blob - crates/db_views/Cargo.toml
First pass at adding comment trees. (#2362)
[lemmy.git] / crates / db_views / Cargo.toml
1 [package]
2 name = "lemmy_db_views"
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 doctest = false
13
14 [features]
15 full = ["lemmy_db_schema/full", "diesel", "tracing"]
16
17 [dependencies]
18 lemmy_db_schema = { version = "=0.16.5", path = "../db_schema" }
19 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
20 serde = { version = "1.0.136", features = ["derive"] }
21 tracing = { version = "0.1.32", optional = true }
22 diesel_ltree = "0.2.7"
23
24 [dev-dependencies]
25 serial_test = "0.6.0"