diff -Nru meli-0.8.10+dfsg/debian/changelog meli-0.8.10+dfsg/debian/changelog
--- meli-0.8.10+dfsg/debian/changelog	2025-01-15 08:37:20.000000000 +0800
+++ meli-0.8.10+dfsg/debian/changelog	2025-02-24 10:27:49.000000000 +0800
@@ -1,3 +1,10 @@
+meli (0.8.10+dfsg-2.1) UNRELEASED; urgency=medium
+
+  * Add dependence 'rustfmt' for riscv64.
+  * Fix missing modifiers error on riscv64.
+
+ -- Gui-Yue <yuemeng.gui@gmail.com>  Mon, 24 Feb 2025 10:27:49 +0800
+
 meli (0.8.10+dfsg-2) unstable; urgency=medium
 
   * add patch cherry-picked upstream
diff -Nru meli-0.8.10+dfsg/debian/control meli-0.8.10+dfsg/debian/control
--- meli-0.8.10+dfsg/debian/control	2024-12-07 02:47:25.000000000 +0800
+++ meli-0.8.10+dfsg/debian/control	2025-02-24 10:27:49.000000000 +0800
@@ -78,6 +78,7 @@
  librust-xdg-2+default-dev,
  mandoc,
  unicode-data,
+ rustfmt,
 Standards-Version: 4.7.0
 Homepage: https://meli-email.org/
 Vcs-Git: https://salsa.debian.org/debian/meli.git
diff -Nru meli-0.8.10+dfsg/debian/patches/fix_missing_modifiers_on_riscv.patch meli-0.8.10+dfsg/debian/patches/fix_missing_modifiers_on_riscv.patch
--- meli-0.8.10+dfsg/debian/patches/fix_missing_modifiers_on_riscv.patch	1970-01-01 08:00:00.000000000 +0800
+++ meli-0.8.10+dfsg/debian/patches/fix_missing_modifiers_on_riscv.patch	2025-02-24 10:27:49.000000000 +0800
@@ -0,0 +1,38 @@
+--- a/melib/src/imap/fetch.rs
++++ b/melib/src/imap/fetch.rs
+@@ -260,6 +260,7 @@
+                             sequence_set,
+                             macro_or_item_names: common_attributes(),
+                             uid: true,
++                            modifiers: vec![],
+                         })
+                         .await?;
+                         conn.read_response(&mut response, RequiredResponses::FETCH_REQUIRED)
+--- a/melib/src/imap/mod.rs
++++ b/melib/src/imap/mod.rs
+@@ -839,6 +839,7 @@
+                         response: StoreResponse::Answer,
+                         flags,
+                         uid: true,
++                        modifiers: vec![],
+                     }
+                 };
+                 conn.send_command(command).await?;
+@@ -907,6 +908,7 @@
+                         response: StoreResponse::Answer,
+                         flags,
+                         uid: true,
++                        modifiers: vec![],
+                     }
+                 };
+                 conn.send_command(command).await?;
+--- a/melib/src/imap/sync/mod.rs
++++ b/melib/src/imap/sync/mod.rs
+@@ -210,6 +210,7 @@
+                 MessageDataItemName::Flags,
+             ]),
+             uid: true,
++            modifiers: vec![],
+         })
+         .await?;
+         self.read_response(&mut response, RequiredResponses::FETCH_REQUIRED)
diff -Nru meli-0.8.10+dfsg/debian/patches/series meli-0.8.10+dfsg/debian/patches/series
--- meli-0.8.10+dfsg/debian/patches/series	2025-01-15 08:35:25.000000000 +0800
+++ meli-0.8.10+dfsg/debian/patches/series	2025-02-24 10:27:49.000000000 +0800
@@ -6,3 +6,4 @@
 2001_linkify.patch
 2002_system-shared_libs.patch
 2003_unicode.patch
+fix_missing_modifiers_on_riscv.patch
