Skip to content

Commit

Permalink
fix(serde_yml): 🐛 fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienrousseau committed Jan 1, 2025
1 parent ea4aa9b commit b441889
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@
// Re-exports organized by functionality
pub use crate::{
// Core serialization/deserialization
de::{from_reader, from_slice, from_str, Deserializer, DocumentAnchor},
ser::{to_string, to_writer, Serializer, State},

de::{
from_reader, from_slice, from_str, Deserializer, DocumentAnchor,
},
// Data structures and types
mapping::Mapping,
value::{from_value, to_value, Index, Number, Sequence, Value},

// Error handling
modules::error::{Error, Location, Result},
ser::{to_string, to_writer, Serializer, State},

value::{from_value, to_value, Index, Number, Sequence, Value},
};

// ------------------------------------------------------------
Expand Down

0 comments on commit b441889

Please sign in to comment.