commit 7068bd8bcf3a32ce55e7b2734fc62e56fd2d078e
parent 0569d7fb97a506f8bc8fa1f29de4f08e73ee617a
Author: triesap <tyson@radroots.org>
Date: Sun, 22 Feb 2026 02:40:57 +0000
events: format listing module imports and test use order
- run rustfmt for the events crate manifest scope
- normalize import and grouped use ordering in listing module tests
- keep listing event model behavior unchanged with formatting-only edits
- keep events crate test and export paths stable after formatting
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/crates/events/src/listing.rs b/crates/events/src/listing.rs
@@ -5,9 +5,9 @@ use radroots_core::{
#[cfg(feature = "ts-rs")]
use ts_rs::TS;
+use crate::RadrootsNostrEvent;
use crate::plot::RadrootsPlotRef;
use crate::resource_area::RadrootsResourceAreaRef;
-use crate::RadrootsNostrEvent;
#[cfg(not(feature = "std"))]
use alloc::{string::String, vec::Vec};
@@ -250,7 +250,7 @@ pub struct RadrootsListingImageSize {
#[cfg(all(test, feature = "ts-rs", feature = "std"))]
mod constants_tests {
- use super::{RadrootsListingFarmRef, RADROOTS_LISTING_PRODUCT_TAG_KEYS};
+ use super::{RADROOTS_LISTING_PRODUCT_TAG_KEYS, RadrootsListingFarmRef};
use std::{
fs,
path::{Path, PathBuf},