X-Git-Url: http://these/git/?a=blobdiff_plain;f=Cargo.toml;h=424c10e7358b99b36254c8de66b117f2560a83a7;hb=ae438e148e3d0365a80ea8a9a40a3d3e9c0aad60;hp=49d176b42380e169fe195a66b66e09fe65edab7d;hpb=211e76dc2781606331a2825b48a2b11fcd237d98;p=lemmy.git diff --git a/Cargo.toml b/Cargo.toml index 49d176b4..424c10e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.18.0" +version = "0.18.1" edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" @@ -21,92 +21,109 @@ repository.workspace = true doctest = false [profile.release] -strip = "symbols" debug = 0 lto = "thin" +# 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] -strip = "symbols" debug = 0 [features] embed-pictrs = ["pict-rs"] -console = ["console-subscriber", "opentelemetry", "opentelemetry-otlp", "tracing-opentelemetry", "reqwest-tracing/opentelemetry_0_16"] +console = [ + "console-subscriber", + "opentelemetry", + "opentelemetry-otlp", + "tracing-opentelemetry", + "reqwest-tracing/opentelemetry_0_16", +] +json-log = ["tracing-subscriber/json"] +prometheus-metrics = ["prometheus", "actix-web-prom"] 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/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", ] [workspace.dependencies] -lemmy_api = { version = "=0.18.0", path = "./crates/api" } -lemmy_api_crud = { version = "=0.18.0", path = "./crates/api_crud" } -lemmy_apub = { version = "=0.18.0", path = "./crates/apub" } -lemmy_utils = { version = "=0.18.0", path = "./crates/utils" } -lemmy_db_schema = { version = "=0.18.0", path = "./crates/db_schema" } -lemmy_api_common = { version = "=0.18.0", path = "./crates/api_common" } -lemmy_routes = { version = "=0.18.0", path = "./crates/routes" } -lemmy_db_views = { version = "=0.18.0", path = "./crates/db_views" } -lemmy_db_views_actor = { version = "=0.18.0", path = "./crates/db_views_actor" } -lemmy_db_views_moderator = { version = "=0.18.0", path = "./crates/db_views_moderator" } -activitypub_federation = { version = "0.4.4", default-features = false, features = ["actix-web"] } +lemmy_api = { version = "=0.18.1", path = "./crates/api" } +lemmy_api_crud = { version = "=0.18.1", path = "./crates/api_crud" } +lemmy_apub = { version = "=0.18.1", path = "./crates/apub" } +lemmy_utils = { version = "=0.18.1", path = "./crates/utils" } +lemmy_db_schema = { version = "=0.18.1", path = "./crates/db_schema" } +lemmy_api_common = { version = "=0.18.1", path = "./crates/api_common" } +lemmy_routes = { version = "=0.18.1", path = "./crates/routes" } +lemmy_db_views = { version = "=0.18.1", path = "./crates/db_views" } +lemmy_db_views_actor = { version = "=0.18.1", path = "./crates/db_views_actor" } +lemmy_db_views_moderator = { version = "=0.18.1", path = "./crates/db_views_moderator" } +activitypub_federation = { version = "0.4.6", default-features = false, features = [ + "actix-web", +] } diesel = "2.1.0" diesel_migrations = "2.1.0" diesel-async = "0.3.1" -serde = { version = "1.0.164", features = ["derive"] } -serde_with = "1.14.0" -actix-web = { version = "4.3.1", default-features = false, features = ["macros", "rustls", "compress-brotli", "compress-gzip", "compress-zstd"] } +serde = { version = "1.0.167", features = ["derive"] } +serde_with = "3.0.0" +actix-web = { version = "4.3.1", default-features = false, features = [ + "macros", + "rustls", + "compress-brotli", + "compress-gzip", + "compress-zstd", +] } tracing = "0.1.37" -tracing-actix-web = { version = "0.6.2", default-features = false } +tracing-actix-web = { version = "0.7.5", default-features = false } tracing-error = "0.2.0" tracing-log = "0.1.3" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } url = { version = "2.4.0", features = ["serde"] } url_serde = "0.2.0" -reqwest = { version = "0.11.18", features = ["json", "blocking"] } +reqwest = { version = "0.11.18", features = ["json", "blocking", "gzip"] } reqwest-middleware = "0.2.2" -reqwest-tracing = "0.4.4" -clokwerk = "0.3.5" +reqwest-tracing = "0.4.5" +clokwerk = "0.4.0" doku = { version = "0.21.1", features = ["url-2"] } -bcrypt = "0.13.0" +bcrypt = "0.15.0" chrono = { version = "0.4.26", features = ["serde"], default-features = false } -serde_json = { version = "1.0.96", features = ["preserve_order"] } -base64 = "0.13.1" -uuid = { version = "1.3.4", features = ["serde", "v4"] } -async-trait = "0.1.68" +serde_json = { version = "1.0.100", features = ["preserve_order"] } +base64 = "0.21.2" +uuid = { version = "1.4.0", features = ["serde", "v4"] } +async-trait = "0.1.71" captcha = "0.0.9" -anyhow = "1.0.71" +anyhow = { version = "1.0.71", features = [ + "backtrace", +] } # backtrace is on by default on nightly, but not stable rust diesel_ltree = "0.3.0" -typed-builder = "0.10.0" -serial_test = "0.9.0" -tokio = { version = "1.28.2", features = ["full"] } -sha2 = "0.10.6" -regex = "1.8.4" +typed-builder = "0.15.0" +serial_test = "2.0.0" +tokio = { version = "1.29.1", features = ["full"] } +regex = "1.9.0" once_cell = "1.18.0" diesel-derive-newtype = "2.1.0" -diesel-derive-enum = {version = "2.1.0", features = ["postgres"] } -strum = "0.24.1" -strum_macros = "0.24.3" -itertools = "0.10.5" +diesel-derive-enum = { version = "2.1.0", features = ["postgres"] } +strum = "0.25.0" +strum_macros = "0.25.1" +itertools = "0.11.0" futures = "0.3.28" http = "0.2.9" percent-encoding = "2.3.0" -rosetta-i18n = "0.1.2" +rosetta-i18n = "0.1.3" rand = "0.8.5" -opentelemetry = { version = "0.17.0", features = ["rt-tokio"] } -tracing-opentelemetry = { version = "0.17.4" } -ts-rs = { version = "6.2", features = ["serde-compat", "format", "chrono-impl"] } -rustls = { version ="0.21.2", features = ["dangerous_configuration"]} +opentelemetry = { version = "0.19.0", features = ["rt-tokio"] } +tracing-opentelemetry = { version = "0.19.0" } +ts-rs = { version = "6.2", features = ["serde-compat", "chrono-impl"] } +rustls = { version = "0.21.3", features = ["dangerous_configuration"] } futures-util = "0.3.28" tokio-postgres = "0.7.8" tokio-postgres-rustls = "0.10.0" @@ -138,13 +155,15 @@ doku = { workspace = true } serde_json = { workspace = true } tracing-opentelemetry = { workspace = true, optional = true } opentelemetry = { workspace = true, optional = true } -console-subscriber = { version = "0.1.9", optional = true } -opentelemetry-otlp = { version = "0.10.0", optional = true } -pict-rs = { version = "0.4.0-rc.3", optional = true } +console-subscriber = { version = "0.1.10", optional = true } +opentelemetry-otlp = { version = "0.12.0", optional = true } +pict-rs = { version = "0.4.0-rc.12", optional = true } tokio.workspace = true actix-cors = "0.6.4" rustls = { workspace = true } futures-util = { workspace = true } tokio-postgres = { workspace = true } tokio-postgres-rustls = { workspace = true } -chrono = { workspace = true } \ No newline at end of file +chrono = { workspace = true } +prometheus = { version = "0.13.3", features = ["process"], optional = true } +actix-web-prom = { version = "0.6.0", optional = true }