2020-12-18 11:17:21 -05:00
|
|
|
[package]
|
|
|
|
name = "lemmy_db_schema"
|
2022-11-17 10:23:01 -05:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
documentation.workspace = true
|
2022-11-24 11:38:00 -05:00
|
|
|
repository.workspace = true
|
2020-12-18 11:17:21 -05:00
|
|
|
|
2021-02-25 14:43:39 -05:00
|
|
|
[lib]
|
2021-12-20 17:23:06 -05:00
|
|
|
name = "lemmy_db_schema"
|
|
|
|
path = "src/lib.rs"
|
2021-02-25 14:43:39 -05:00
|
|
|
doctest = false
|
|
|
|
|
2022-05-03 13:44:13 -04:00
|
|
|
[features]
|
|
|
|
full = ["diesel", "diesel-derive-newtype", "diesel_migrations", "bcrypt", "lemmy_utils",
|
2022-11-17 10:23:01 -05:00
|
|
|
"activitypub_federation", "sha2", "regex", "once_cell", "serde_json", "diesel_ltree",
|
|
|
|
"diesel-async", "bb8"]
|
2022-05-03 13:44:13 -04:00
|
|
|
|
2020-12-18 11:17:21 -05:00
|
|
|
[dependencies]
|
2022-11-17 10:23:01 -05:00
|
|
|
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 }
|
2023-01-23 09:59:25 -05:00
|
|
|
tracing = { workspace = true }
|
|
|
|
tracing-error = { workspace = true }
|
2021-10-16 09:33:38 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-11-17 10:23:01 -05:00
|
|
|
serial_test = { workspace = true }
|
2022-10-27 05:24:07 -04:00
|
|
|
|