Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pmarks committed Sep 3, 2019
1 parent 86799d1 commit b3fb41a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ use std::path::Path;
use std::thread;
use std::thread::JoinHandle;

use crossbeam_channel;
use lz4;
use serde::{Serialize, Deserialize, de::DeserializeOwned};
use bincode::{deserialize_from, serialize_into};
use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
use crossbeam_channel;
use crossbeam_channel::{bounded, Receiver, Sender};
use failure::{format_err, Error};
use libc::{c_void, off_t, pread, pwrite, size_t, ssize_t};
use lz4;
use min_max_heap::MinMaxHeap;
use serde::{de::DeserializeOwned, Deserialize, Serialize};

/// Represent a range of key space
pub mod range;
Expand Down
2 changes: 1 addition & 1 deletion src/range.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) 2018 10x Genomics, Inc. All rights reserved.

use serde::{Serialize, Deserialize};
use crate::ShardRecord;
use serde::{Deserialize, Serialize};

#[derive(Debug, PartialEq, Eq)]
pub(crate) enum Rorder {
Expand Down

0 comments on commit b3fb41a

Please sign in to comment.