From 24ad97697eb15cedec3ed8a82cf562153ee1afa0 Mon Sep 17 00:00:00 2001 From: Clark Alesna Date: Mon, 20 May 2024 11:35:39 +0800 Subject: [PATCH] fix lint issues --- src/filters/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filters/mod.rs b/src/filters/mod.rs index 194d7afc..e2b24c6a 100644 --- a/src/filters/mod.rs +++ b/src/filters/mod.rs @@ -3,13 +3,13 @@ use serde::Deserialize; use crate::framework::*; +pub mod emit_cbor; pub mod into_json; pub mod legacy_v1; pub mod noop; pub mod parse_cbor; pub mod select; pub mod split_block; -pub mod emit_cbor; #[cfg(feature = "wasm")] pub mod wasm_plugin;