2020-12-21 16:30:34 +00:00
|
|
|
[package]
|
2020-12-21 23:27:42 +00:00
|
|
|
name = "lemmy_db_views_moderator"
|
2022-11-17 15:23:01 +00:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
documentation.workspace = true
|
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]
|
2022-11-09 10:05:00 +00:00
|
|
|
full = ["lemmy_db_schema/full", "diesel", "diesel-async"]
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2020-12-21 16:30:34 +00:00
|
|
|
[dependencies]
|
2022-11-17 15:23:01 +00:00
|
|
|
lemmy_db_schema = { workspace = true }
|
|
|
|
diesel = { workspace = true, features = ["postgres","chrono","serde_json"], optional = true }
|
|
|
|
diesel-async = { workspace = true, features = ["postgres", "bb8"], optional = true }
|
|
|
|
serde = { workspace = true }
|