mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
f42420809b
* Expose LemmyErrorType in lemmy_api_common * Make conditional compilation gates for utils * Make it so api_common doesn't pull in unnecessary deps * Make error type non exhaustive * Fix formatting * Format toml * Add some convenience derives to LemmyError * Simplify features * Fix CI compile error --------- Co-authored-by: SleeplessOne1917 <insomnia-void@protonmail.com>
25 lines
602 B
TOML
25 lines
602 B
TOML
[package]
|
|
name = "lemmy_db_perf"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
diesel = { workspace = true }
|
|
diesel-async = { workspace = true }
|
|
lemmy_db_schema = { workspace = true }
|
|
lemmy_db_views = { workspace = true, features = ["full"] }
|
|
lemmy_utils = { workspace = true, features = ["default"] }
|
|
tokio = { workspace = true }
|
|
url = { workspace = true }
|