mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
79e6dbf0de
* Update session_middleware.rs * Update private_message_report_view.rs * Update session_middleware.rs * Update private_message_view.rs * Update private_message.rs * Update registration_application_view.rs * Update actor_language.rs * Update vote_view.rs * Update code_migrations.rs * Update comment_aggregates.rs * Update person_view.rs * Update user_settings_backup.rs * Update person.rs * Update create.rs * Update comment_view.rs * Update moderator.rs * Update site_aggregates.rs * Update claims.rs * Update community_aggregates.rs * Update post_report.rs * Update person_mention_view.rs * Update community_view.rs * Update comment_report_view.rs * Update post_report_view.rs * Update community_moderators.rs * Update comment.rs * Update person_aggregates.rs * Update comment_reply_view.rs * Update password_reset_request.rs * Update post_aggregates.rs * Update community.rs * Update main.rs * Update post.rs * Update person.rs * Update person.rs * Update claims.rs * Update person.rs * Update create.rs * Update user_settings_backup.rs * Update community_moderators.rs * Update main.rs * Update comment_aggregates.rs * Update community_aggregates.rs * Update person.rs * Update Cargo.toml * Update Cargo.toml * Update person.rs * fix * Update code_migrations.rs * fix submodule * Update person.rs
92 lines
2.4 KiB
TOML
92 lines
2.4 KiB
TOML
[package]
|
|
name = "lemmy_db_schema"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
name = "lemmy_db_schema"
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
full = [
|
|
"lemmy_utils/full",
|
|
"diesel",
|
|
"diesel-derive-newtype",
|
|
"diesel-derive-enum",
|
|
"diesel_migrations",
|
|
"bcrypt",
|
|
"lemmy_utils",
|
|
"activitypub_federation",
|
|
"regex",
|
|
"once_cell",
|
|
"serde_json",
|
|
"diesel_ltree",
|
|
"diesel-async",
|
|
"deadpool",
|
|
"ts-rs",
|
|
"tokio",
|
|
"tokio-postgres",
|
|
"tokio-postgres-rustls",
|
|
"rustls",
|
|
"i-love-jesus",
|
|
]
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_with = { workspace = true }
|
|
url = { workspace = true }
|
|
strum = { workspace = true }
|
|
strum_macros = { workspace = true }
|
|
serde_json = { workspace = true, optional = true }
|
|
activitypub_federation = { workspace = true, optional = true }
|
|
lemmy_utils = { workspace = true, optional = true }
|
|
bcrypt = { workspace = true, optional = true }
|
|
diesel = { workspace = true, features = [
|
|
"postgres",
|
|
"chrono",
|
|
"serde_json",
|
|
"uuid",
|
|
], optional = true }
|
|
diesel-derive-newtype = { workspace = true, optional = true }
|
|
diesel-derive-enum = { workspace = true, optional = true }
|
|
diesel_migrations = { workspace = true, optional = true }
|
|
diesel-async = { workspace = true, features = [
|
|
"postgres",
|
|
"deadpool",
|
|
], optional = true }
|
|
regex = { workspace = true, optional = true }
|
|
once_cell = { workspace = true, optional = true }
|
|
diesel_ltree = { workspace = true, optional = true }
|
|
typed-builder = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
tracing = { workspace = true }
|
|
deadpool = { version = "0.12.1", features = ["rt_tokio_1"], optional = true }
|
|
ts-rs = { workspace = true, optional = true }
|
|
futures-util = { workspace = true }
|
|
tokio = { workspace = true, optional = true }
|
|
tokio-postgres = { workspace = true, optional = true }
|
|
tokio-postgres-rustls = { workspace = true, optional = true }
|
|
rustls = { workspace = true, optional = true }
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
i-love-jesus = { workspace = true, optional = true }
|
|
anyhow = { workspace = true }
|
|
moka.workspace = true
|
|
derive-new.workspace = true
|
|
|
|
[dev-dependencies]
|
|
serial_test = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["strum"]
|