mirror of https://github.com/LemmyNet/lemmy.git
22 lines
594 B
TOML
22 lines
594 B
TOML
[package]
|
|
name = "lemmy_db_views_actor"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[features]
|
|
full = ["lemmy_db_schema/full", "diesel", "diesel-async"]
|
|
|
|
[dependencies]
|
|
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 }
|