Skip to content

Commit

Permalink
Merge branch 'mdsteele:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
shamilsan authored Aug 1, 2024
2 parents fa7fa1d + 74f9881 commit 3383e0a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/internal/category.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::fmt;
use std::io;
use std::str;
use std::{fmt, i16, i32};
use uuid::Uuid;

// ========================================================================= //
Expand Down
2 changes: 1 addition & 1 deletion src/internal/column.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ use crate::internal::category::Category;
use crate::internal::stringpool::StringRef;
use crate::internal::value::{Value, ValueRef};
use byteorder::{LittleEndian, ReadBytesExt, WriteBytesExt};
use std::fmt;
use std::io::{self, Read, Write};
use std::str;
use std::{fmt, i16, i32};

// ========================================================================= //

Expand Down
1 change: 0 additions & 1 deletion src/internal/stringpool.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use crate::internal::codepage::CodePage;
use byteorder::{LittleEndian, ReadBytesExt, WriteBytesExt};
use std::io::{self, Read, Write};
use std::u16;

// ========================================================================= //

Expand Down

0 comments on commit 3383e0a

Please sign in to comment.