From 5265bb542f2a3a5f01bac6ebe1e7973e3aecfd4a Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Tue, 19 Mar 2024 16:14:54 +0100 Subject: [PATCH] Add comment about console feature requiring tokio_unstable (fixes #4553) --- Cargo.lock | 2 ++ Cargo.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 5ef691e26..0069d3510 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2633,6 +2633,7 @@ version = "0.19.3" dependencies = [ "activitypub_federation", "actix-web", + "anyhow", "chrono", "encoding", "enum-map", @@ -2645,6 +2646,7 @@ dependencies = [ "lemmy_db_views_moderator", "lemmy_utils", "mime", + "moka", "once_cell", "pretty_assertions", "regex", diff --git a/Cargo.toml b/Cargo.toml index 66c3f9d47..366bdc353 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,6 +37,8 @@ debug = 0 [features] embed-pictrs = ["pict-rs"] +# This feature requires building with `tokio_unstable` flag, see documentation: +# https://docs.rs/tokio/latest/tokio/#unstable-features console = [ "console-subscriber", "opentelemetry",