diff --git a/backends/mizan-tauri/README.md b/backends/mizan-tauri/README.md index a721a80..ce0adf6 100644 --- a/backends/mizan-tauri/README.md +++ b/backends/mizan-tauri/README.md @@ -138,7 +138,6 @@ distributed slice's entries) and prints `mizan_core::build_ir()`: // #[derive(Mizan)] / #[mizan::client] registrations so the linker // keeps them in the final binary. -#[allow(dead_code)] fn _force_link() { use my_app_lib::commands; let _ = commands::greet; diff --git a/frontends/mizan-rust/src/context.rs b/frontends/mizan-rust/src/context.rs index 82ca971..8d1efd3 100644 --- a/frontends/mizan-rust/src/context.rs +++ b/frontends/mizan-rust/src/context.rs @@ -60,7 +60,6 @@ pub type FetchFn = Arc< struct ContextEntry { - #[allow(dead_code)] params: Value, tx: watch::Sender, fetch_fn: FetchFn, diff --git a/frontends/mizan-rust/src/error.rs b/frontends/mizan-rust/src/error.rs index 2df9138..5581283 100644 --- a/frontends/mizan-rust/src/error.rs +++ b/frontends/mizan-rust/src/error.rs @@ -74,7 +74,6 @@ enum Envelope { Django { // Django form is `{"error": true, "code": ..., "message": ..., "details": ...}`. // `error` is a bool sentinel; the actual fields are siblings. - #[allow(dead_code)] error: bool, code: Option, message: Option,