2020-12-21 16:30:34 +00:00
|
|
|
[package]
|
|
|
|
name = "lemmy_db_views"
|
2022-05-30 22:32:31 +00:00
|
|
|
version = "0.16.5"
|
2022-02-14 15:34:54 +00:00
|
|
|
edition = "2021"
|
2021-07-24 09:55:56 +00:00
|
|
|
description = "A link aggregator for the fediverse"
|
|
|
|
license = "AGPL-3.0"
|
2021-10-19 17:03:43 +00:00
|
|
|
homepage = "https://join-lemmy.org/"
|
|
|
|
documentation = "https://join-lemmy.org/docs/en/index.html"
|
2022-06-28 21:44:55 +00:00
|
|
|
rust-version = "1.57"
|
2020-12-21 16:30:34 +00:00
|
|
|
|
2021-02-25 19:43:39 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
[features]
|
|
|
|
full = ["lemmy_db_schema/full", "diesel", "tracing"]
|
|
|
|
|
2020-12-21 16:30:34 +00:00
|
|
|
[dependencies]
|
2022-05-30 22:32:31 +00:00
|
|
|
lemmy_db_schema = { version = "=0.16.5", path = "../db_schema" }
|
2022-09-26 14:09:32 +00:00
|
|
|
diesel = { version = "2.0.0", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
|
|
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
|
|
|
tracing = { version = "0.1.36", optional = true }
|
|
|
|
diesel_ltree = "0.3.0"
|
2022-08-04 19:30:17 +00:00
|
|
|
typed-builder = "0.10.0"
|
2022-10-27 09:24:07 +00:00
|
|
|
url = { version = "2.3.1", features = ["serde"] }
|
2021-02-25 19:43:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-09-26 14:09:32 +00:00
|
|
|
serial_test = "0.9.0"
|