Skip to content

Commit

Permalink
support MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Sep 12, 2024
1 parent b88f848 commit 177c933
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions crates/batson/src/array.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use std::mem::size_of;
use std::sync::Arc;

use jiter::{JsonArray, JsonValue};
Expand Down
1 change: 1 addition & 0 deletions crates/batson/src/decoder.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use std::fmt;
use std::mem::{align_of, size_of};

use jiter::JsonValue;

Expand Down
2 changes: 2 additions & 0 deletions crates/batson/src/encoder.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
use std::mem::align_of;

use jiter::{JsonArray, JsonObject, JsonValue};

use crate::array::encode_array;
Expand Down
1 change: 1 addition & 0 deletions crates/batson/src/object.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use std::cmp::Ordering;
use std::mem::size_of;
use std::sync::Arc;

use bytemuck::{Pod, Zeroable};
Expand Down

0 comments on commit 177c933

Please sign in to comment.