]> Untitled Git - lemmy.git/blobdiff - Cargo.toml
Use async email sender (#3554)
[lemmy.git] / Cargo.toml
index f73b6b531ffa1079f9edd6c53a6532b2fcd43ae4..e477f95f65991c3f50ce833073505af45d3950d1 100644 (file)
@@ -1,5 +1,5 @@
 [workspace.package]
-version = "0.18.1-rc.9"
+version = "0.18.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -27,6 +27,8 @@ lto = "thin"
 [features]
 embed-pictrs = ["pict-rs"]
 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]
@@ -44,16 +46,16 @@ members = [
 ]
 
 [workspace.dependencies]
-lemmy_api = { version = "=0.18.1-rc.9", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.18.1-rc.9", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.18.1-rc.9", path = "./crates/apub" }
-lemmy_utils = { version = "=0.18.1-rc.9", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.18.1-rc.9", path = "./crates/db_schema" }
-lemmy_api_common = { version = "=0.18.1-rc.9", path = "./crates/api_common" }
-lemmy_routes = { version = "=0.18.1-rc.9", path = "./crates/routes" }
-lemmy_db_views = { version = "=0.18.1-rc.9", path = "./crates/db_views" }
-lemmy_db_views_actor = { version = "=0.18.1-rc.9", path = "./crates/db_views_actor" }
-lemmy_db_views_moderator = { version = "=0.18.1-rc.9", path = "./crates/db_views_moderator" }
+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.4", default-features = false, features = ["actix-web"] }
 diesel = "2.1.0"
 diesel_migrations = "2.1.0"
@@ -142,4 +144,6 @@ 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 }
\ No newline at end of file