mirror of https://github.com/LemmyNet/lemmy.git
46 lines
1.5 KiB
TOML
46 lines
1.5 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
|
|
|
|
[lib]
|
|
name = "lemmy_db_schema"
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
full = ["diesel", "diesel-derive-newtype", "diesel_migrations", "bcrypt", "lemmy_utils",
|
|
"activitypub_federation", "sha2", "regex", "once_cell", "serde_json", "diesel_ltree",
|
|
"diesel-async", "bb8"]
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true }
|
|
serde = { 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"], optional = true }
|
|
diesel-derive-newtype = { workspace = true, optional = true }
|
|
diesel_migrations = { workspace = true, optional = true }
|
|
diesel-async = { workspace = true, features = ["postgres", "bb8"], optional = true }
|
|
sha2 = { workspace = true, 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 }
|
|
tokio = { workspace = true }
|
|
bb8 = { version = "0.8.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
serial_test = { workspace = true }
|
|
|