]> Untitled Git - lemmy.git/blobdiff - crates/db_views/Cargo.toml
First pass at adding comment trees. (#2362)
[lemmy.git] / crates / db_views / Cargo.toml
index 7fcf278255ef8fd2950bf8f89f65f52c5da1a5bd..75daa09af40466efc8c11c15daec753b31f4a040 100644 (file)
@@ -1,21 +1,25 @@
 [package]
 name = "lemmy_db_views"
-version = "0.16.3"
+version = "0.16.5"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
 homepage = "https://join-lemmy.org/"
 documentation = "https://join-lemmy.org/docs/en/index.html"
+rust-version = "1.57"
 
 [lib]
 doctest = false
 
+[features]
+full = ["lemmy_db_schema/full", "diesel", "tracing"]
+
 [dependencies]
-lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
-diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
+lemmy_db_schema = { version = "=0.16.5", path = "../db_schema" }
+diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
 serde = { version = "1.0.136", features = ["derive"] }
-tracing = "0.1.32"
-url = "2.2.2"
+tracing = { version = "0.1.32", optional = true }
+diesel_ltree = "0.2.7"
 
 [dev-dependencies]
 serial_test = "0.6.0"