Skip to content

Commit

Permalink
fmt fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris-Desjardins committed Aug 25, 2024
1 parent de59012 commit f47ce6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sqlx-postgres/src/types/cube.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use crate::types::Type;
use crate::{PgArgumentBuffer, PgHasArrayType, PgTypeInfo, PgValueFormat, PgValueRef, Postgres};
use sqlx_core::bytes::Buf;
use sqlx_core::Error;
use std::str::FromStr;
use std::mem;
use std::str::FromStr;

const BYTE_WIDTH: usize = 8;

Expand Down
2 changes: 1 addition & 1 deletion sqlx-postgres/src/types/hstore.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use std::{
collections::{btree_map, BTreeMap},
mem,
ops::{Deref, DerefMut},
str,
mem,
};

use crate::{
Expand Down

0 comments on commit f47ce6b

Please sign in to comment.