Skip to content

Commit

Permalink
Run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
anshap1719 committed Apr 7, 2024
1 parent d37f610 commit 7893eb6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sqlx-postgres/src/types/ts_vector.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
use crate::decode::Decode;
use crate::encode::{Encode, IsNull};
use crate::types::Type;
use crate::{error::BoxDynError, PgArgumentBuffer, PgHasArrayType, PgTypeInfo, PgValueFormat, PgValueRef, Postgres};
use crate::{
error::BoxDynError, PgArgumentBuffer, PgHasArrayType, PgTypeInfo, PgValueFormat, PgValueRef,
Postgres,
};
use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
use std::fmt::{Display, Formatter};
use std::io::{BufRead, Cursor, Write};
Expand Down

0 comments on commit 7893eb6

Please sign in to comment.