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
|
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]
|
2022-11-09 05:05:00 -05:00
|
|
|
full = ["lemmy_db_schema/full", "diesel", "diesel-async"]
|
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 }
|
|
|
|
diesel = { workspace = true, features = ["postgres","chrono","serde_json"], optional = true }
|
|
|
|
diesel-async = { workspace = true, features = ["postgres", "bb8"], optional = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
typed-builder = { workspace = true }
|