From 016986b59711237f6367230cfdf214de95e47bc6 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Sun, 29 Jun 2025 22:36:11 -0500 Subject: [PATCH] Fix formatting for 0.1.1 --- src/cxx/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cxx/mod.rs b/src/cxx/mod.rs index bfd70cd..95c622b 100644 --- a/src/cxx/mod.rs +++ b/src/cxx/mod.rs @@ -92,10 +92,10 @@ pub mod ffi { #[cfg(test)] mod tests { - use crate::cxx::ffi::{new_versification, Versification}; + use crate::cxx::ffi::{Versification, new_versification}; use super::*; - use std::fs::{create_dir, File}; + use std::fs::{File, create_dir}; use std::io::Write; use tempfile; @@ -277,7 +277,7 @@ mod tests { #[test] fn module_verse_key_integration() { - use std::fs::{create_dir, File}; + use std::fs::{File, create_dir}; use std::io::Write; use tempfile;