mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
88215bfbc9
* change pool fields to parameters for list * remove my_person_id and admin fields * Change recipient id to list param * Remove TypedBuilder from db_views and db_views_actor
36 lines
816 B
TOML
36 lines
816 B
TOML
[package]
|
|
name = "lemmy_db_views"
|
|
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",
|
|
"diesel_ltree",
|
|
"tracing",
|
|
"ts-rs",
|
|
]
|
|
|
|
[dependencies]
|
|
lemmy_db_schema = { workspace = true }
|
|
diesel = { workspace = true, optional = true }
|
|
diesel-async = { workspace = true, optional = true }
|
|
diesel_ltree = { workspace = true, optional = true }
|
|
serde = { workspace = true }
|
|
serde_with = { workspace = true }
|
|
tracing = { workspace = true, optional = true }
|
|
ts-rs = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
serial_test = { workspace = true }
|
|
tokio = { workspace = true }
|