mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
86b44c2a4d
* Include local_site.content_warning setting for showing nsfw by default * Add community setting `only_followers_can_vote` * clippy * add auto_expand_images site setting * cleanup * add missing api params * postquery/communityquery changes * clippy * change error * replace auto_expand_images with default_site_post_listing_mode * change post/community query params * get rid of only_followers_can_vote * machete * fix * clippy * revert remaining vote changes * remove dead code * remove unused var * fmt
46 lines
1012 B
TOML
46 lines
1012 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
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[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 }
|
|
|
|
[dev-dependencies]
|
|
serial_test = { workspace = true }
|
|
tokio = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
url.workspace = true
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["strum"]
|