mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
332e698336
* Convert PersonSortType to purely internal * Remove hot rank and other db optimizations from public api
34 lines
786 B
TOML
34 lines
786 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
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[features]
|
|
full = ["lemmy_db_schema/full", "diesel", "diesel-async", "ts-rs"]
|
|
|
|
[dependencies]
|
|
lemmy_db_schema = { workspace = true }
|
|
diesel = { workspace = true, features = [
|
|
"postgres",
|
|
"chrono",
|
|
"serde_json",
|
|
], optional = true }
|
|
diesel-async = { workspace = true, features = [
|
|
"postgres",
|
|
"deadpool",
|
|
], optional = true }
|
|
serde = { workspace = true }
|
|
serde_with = { workspace = true }
|
|
ts-rs = { workspace = true, optional = true }
|
|
chrono.workspace = true
|
|
strum = { workspace = true }
|
|
strum_macros = { workspace = true }
|