mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
c7ee53026f
* Upgrade dependencies * clippy
196 lines
6.1 KiB
TOML
196 lines
6.1 KiB
TOML
[workspace.package]
|
|
version = "0.19.0-rc.13"
|
|
edition = "2021"
|
|
description = "A link aggregator for the fediverse"
|
|
license = "AGPL-3.0"
|
|
homepage = "https://join-lemmy.org/"
|
|
documentation = "https://join-lemmy.org/docs/en/index.html"
|
|
repository = "https://github.com/LemmyNet/lemmy"
|
|
|
|
[package]
|
|
name = "lemmy_server"
|
|
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
|
|
|
|
[profile.release]
|
|
debug = 0
|
|
lto = "thin"
|
|
strip = true # Automatically strip symbols from the binary.
|
|
opt-level = "z" # Optimize for size.
|
|
|
|
# This profile significantly speeds up build time. If debug info is needed you can comment the line
|
|
# out temporarily, but make sure to leave this in the main branch.
|
|
[profile.dev]
|
|
debug = 0
|
|
|
|
[features]
|
|
embed-pictrs = ["pict-rs"]
|
|
console = [
|
|
"console-subscriber",
|
|
"opentelemetry",
|
|
"opentelemetry-otlp",
|
|
"tracing-opentelemetry",
|
|
"reqwest-tracing/opentelemetry_0_16",
|
|
]
|
|
json-log = ["tracing-subscriber/json"]
|
|
default = []
|
|
|
|
[workspace]
|
|
members = [
|
|
"crates/api",
|
|
"crates/api_crud",
|
|
"crates/api_common",
|
|
"crates/apub",
|
|
"crates/utils",
|
|
"crates/db_schema",
|
|
"crates/db_views",
|
|
"crates/db_views_actor",
|
|
"crates/db_views_actor",
|
|
"crates/routes",
|
|
"crates/federate",
|
|
]
|
|
|
|
[workspace.lints.clippy]
|
|
cast_lossless = "deny"
|
|
complexity = "deny"
|
|
correctness = "deny"
|
|
dbg_macro = "deny"
|
|
explicit_into_iter_loop = "deny"
|
|
explicit_iter_loop = "deny"
|
|
get_first = "deny"
|
|
implicit_clone = "deny"
|
|
indexing_slicing = "deny"
|
|
inefficient_to_string = "deny"
|
|
items-after-statements = "deny"
|
|
manual_string_new = "deny"
|
|
needless_collect = "deny"
|
|
perf = "deny"
|
|
redundant_closure_for_method_calls = "deny"
|
|
style = "deny"
|
|
suspicious = "deny"
|
|
uninlined_format_args = "allow"
|
|
unused_self = "deny"
|
|
unwrap_used = "deny"
|
|
|
|
[workspace.dependencies]
|
|
lemmy_api = { version = "=0.19.0-rc.13", path = "./crates/api" }
|
|
lemmy_api_crud = { version = "=0.19.0-rc.13", path = "./crates/api_crud" }
|
|
lemmy_apub = { version = "=0.19.0-rc.13", path = "./crates/apub" }
|
|
lemmy_utils = { version = "=0.19.0-rc.13", path = "./crates/utils" }
|
|
lemmy_db_schema = { version = "=0.19.0-rc.13", path = "./crates/db_schema" }
|
|
lemmy_api_common = { version = "=0.19.0-rc.13", path = "./crates/api_common" }
|
|
lemmy_routes = { version = "=0.19.0-rc.13", path = "./crates/routes" }
|
|
lemmy_db_views = { version = "=0.19.0-rc.13", path = "./crates/db_views" }
|
|
lemmy_db_views_actor = { version = "=0.19.0-rc.13", path = "./crates/db_views_actor" }
|
|
lemmy_db_views_moderator = { version = "=0.19.0-rc.13", path = "./crates/db_views_moderator" }
|
|
activitypub_federation = { version = "0.5.0-beta.6", default-features = false, features = [
|
|
"actix-web",
|
|
] }
|
|
diesel = "2.1.4"
|
|
diesel_migrations = "2.1.0"
|
|
diesel-async = "0.4.1"
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
serde_with = "3.4.0"
|
|
actix-web = { version = "4.4.0", default-features = false, features = [
|
|
"macros",
|
|
"rustls",
|
|
"compress-brotli",
|
|
"compress-gzip",
|
|
"compress-zstd",
|
|
"cookies",
|
|
] }
|
|
tracing = "0.1.40"
|
|
tracing-actix-web = { version = "0.7.9", default-features = false }
|
|
tracing-error = "0.2.0"
|
|
tracing-log = "0.2.0"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
url = { version = "2.5.0", features = ["serde"] }
|
|
reqwest = { version = "0.11.22", features = ["json", "blocking", "gzip"] }
|
|
reqwest-middleware = "0.2.4"
|
|
reqwest-tracing = "0.4.6"
|
|
clokwerk = "0.4.0"
|
|
doku = { version = "0.21.1", features = ["url-2"] }
|
|
bcrypt = "0.15.0"
|
|
chrono = { version = "0.4.31", features = ["serde"], default-features = false }
|
|
serde_json = { version = "1.0.108", features = ["preserve_order"] }
|
|
base64 = "0.21.5"
|
|
uuid = { version = "1.6.1", features = ["serde", "v4"] }
|
|
async-trait = "0.1.74"
|
|
captcha = "0.0.9"
|
|
anyhow = { version = "1.0.75", features = [
|
|
"backtrace",
|
|
] } # backtrace is on by default on nightly, but not stable rust
|
|
diesel_ltree = "0.3.0"
|
|
typed-builder = "0.18.0"
|
|
serial_test = "2.0.0"
|
|
tokio = { version = "1.35.0", features = ["full"] }
|
|
regex = "1.10.2"
|
|
once_cell = "1.19.0"
|
|
diesel-derive-newtype = "2.1.0"
|
|
diesel-derive-enum = { version = "2.1.0", features = ["postgres"] }
|
|
strum = "0.25.0"
|
|
strum_macros = "0.25.3"
|
|
itertools = "0.12.0"
|
|
futures = "0.3.29"
|
|
http = "0.2.11"
|
|
percent-encoding = "2.3.1"
|
|
rosetta-i18n = "0.1.3"
|
|
opentelemetry = { version = "0.19.0", features = ["rt-tokio"] }
|
|
tracing-opentelemetry = { version = "0.19.0" }
|
|
ts-rs = { version = "7.0.0", features = ["serde-compat", "chrono-impl"] }
|
|
rustls = { version = "0.21.10", features = ["dangerous_configuration"] }
|
|
futures-util = "0.3.29"
|
|
tokio-postgres = "0.7.10"
|
|
tokio-postgres-rustls = "0.10.0"
|
|
enum-map = "2.7"
|
|
moka = { version = "0.12.1", features = ["future"] }
|
|
|
|
[dependencies]
|
|
lemmy_api = { workspace = true }
|
|
lemmy_api_crud = { workspace = true }
|
|
lemmy_apub = { workspace = true }
|
|
lemmy_utils = { workspace = true }
|
|
lemmy_db_schema = { workspace = true }
|
|
lemmy_api_common = { workspace = true }
|
|
lemmy_routes = { workspace = true }
|
|
lemmy_federate = { version = "0.19.0-rc.13", path = "crates/federate" }
|
|
activitypub_federation = { workspace = true }
|
|
diesel = { workspace = true }
|
|
diesel-async = { workspace = true }
|
|
actix-web = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-actix-web = { workspace = true }
|
|
tracing-error = { workspace = true }
|
|
tracing-log = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
url = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
reqwest-middleware = { workspace = true }
|
|
reqwest-tracing = { workspace = true }
|
|
clokwerk = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing-opentelemetry = { workspace = true, optional = true }
|
|
opentelemetry = { workspace = true, optional = true }
|
|
console-subscriber = { version = "0.1.10", optional = true }
|
|
opentelemetry-otlp = { version = "0.12.0", optional = true }
|
|
pict-rs = { version = "0.5.0-rc.1", optional = true }
|
|
tokio.workspace = true
|
|
actix-cors = "0.6.5"
|
|
futures-util = { workspace = true }
|
|
chrono = { workspace = true }
|
|
prometheus = { version = "0.13.3", features = ["process"] }
|
|
serial_test = { workspace = true }
|
|
clap = { version = "4.4.11", features = ["derive"] }
|
|
actix-web-prom = "0.7.0"
|