mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
30f7135f32
* ci rust 1.74.0 * do it * Update .woodpecker.yml * Update Cargo.toml * Update lint.sh * Update lib.rs --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
33 lines
727 B
TOML
33 lines
727 B
TOML
[package]
|
|
name = "lemmy_db_views_moderator"
|
|
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 }
|