2020-12-21 11:30:34 -05:00
|
|
|
[package]
|
2020-12-21 18:27:42 -05:00
|
|
|
name = "lemmy_db_views_actor"
|
2022-11-17 10:23:01 -05:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
documentation.workspace = true
|
2022-11-24 11:38:00 -05:00
|
|
|
repository.workspace = true
|
2020-12-21 11:30:34 -05:00
|
|
|
|
2021-02-25 14:43:39 -05:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2022-05-03 13:44:13 -04:00
|
|
|
[features]
|
2023-04-26 00:26:10 -04:00
|
|
|
full = ["lemmy_db_schema/full", "diesel", "diesel-async", "ts-rs"]
|
2022-05-03 13:44:13 -04:00
|
|
|
|
2020-12-21 11:30:34 -05:00
|
|
|
[dependencies]
|
2022-11-17 10:23:01 -05:00
|
|
|
lemmy_db_schema = { workspace = true }
|
2023-07-14 04:45:18 -04:00
|
|
|
diesel = { workspace = true, features = [
|
|
|
|
"postgres",
|
|
|
|
"chrono",
|
|
|
|
"serde_json",
|
|
|
|
], optional = true }
|
|
|
|
diesel-async = { workspace = true, features = [
|
|
|
|
"postgres",
|
|
|
|
"deadpool",
|
|
|
|
], optional = true }
|
2022-11-17 10:23:01 -05:00
|
|
|
serde = { workspace = true }
|
2023-04-26 00:26:10 -04:00
|
|
|
serde_with = { workspace = true }
|
2023-07-14 04:45:18 -04:00
|
|
|
ts-rs = { workspace = true, optional = true }
|
2023-09-09 12:25:03 -04:00
|
|
|
chrono.workspace = true
|
2023-10-16 19:37:28 -04:00
|
|
|
strum = { workspace = true }
|
|
|
|
strum_macros = { workspace = true }
|
2023-10-20 10:01:29 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serial_test = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|