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
|
2022-11-24 16:38:00 +00:00
|
|
|
repository.workspace = true
|
2020-12-21 16:30:34 +00:00
|
|
|
|
2021-02-25 19:43:39 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2023-11-21 13:51:22 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
[features]
|
2023-04-26 04:26:10 +00:00
|
|
|
full = ["lemmy_db_schema/full", "diesel", "diesel-async", "ts-rs"]
|
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 }
|
2023-07-14 08:45:18 +00:00
|
|
|
diesel = { workspace = true, features = [
|
|
|
|
"postgres",
|
|
|
|
"chrono",
|
|
|
|
"serde_json",
|
|
|
|
], optional = true }
|
|
|
|
diesel-async = { workspace = true, features = [
|
|
|
|
"postgres",
|
|
|
|
"deadpool",
|
|
|
|
], optional = true }
|
2022-11-17 15:23:01 +00:00
|
|
|
serde = { workspace = true }
|
2023-04-26 04:26:10 +00:00
|
|
|
serde_with = { workspace = true }
|
2023-07-14 08:45:18 +00:00
|
|
|
ts-rs = { workspace = true, optional = true }
|