notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit a1ac0cd2c82b2d92128f74b700f0e9b0220dce5b
parent ee85b754dd86bce33ebf6b7c00a4a599be1da7e5
Author: kernelkind <kernelkind@gmail.com>
Date:   Sun, 25 May 2025 18:25:34 -0400

appease clippy

not sure why this warning is only now showing up

Signed-off-by: kernelkind <kernelkind@gmail.com>

Diffstat:
Mcrates/notedeck_chrome/src/app.rs | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/crates/notedeck_chrome/src/app.rs b/crates/notedeck_chrome/src/app.rs @@ -2,6 +2,7 @@ use notedeck::{AppAction, AppContext}; use notedeck_columns::Damus; use notedeck_dave::Dave; +#[allow(clippy::large_enum_variant)] pub enum NotedeckApp { Dave(Dave), Columns(Damus),