Skip to content

Commit

Permalink
Merge b3fb41a into 2f7bf36
Browse files Browse the repository at this point in the history
  • Loading branch information
pmarks committed Sep 3, 2019
2 parents 2f7bf36 + b3fb41a commit 243497d
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 83 deletions.
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shardio"
version = "0.5.3"
version = "0.6.0"
authors = ["Patrick Marks <patrick@10xgenomics.com>", "Sreenath Krishnan <sreenath.krishnan@10xgenomics.com>", "Lance Hepler <lance.hepler@10xgenomics.com>"]
edition = "2018"
license = "MIT"
Expand All @@ -16,8 +16,7 @@ readme = "README.md"
full-test = []

[dependencies]
serde = "1"
serde_derive = "1"
serde = { version = "1.0", features = ["derive"] }
bincode = "1.1"
byteorder = "1.3.0"
libc = "0.2"
Expand Down
1 change: 0 additions & 1 deletion src/helper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ pub struct ThreadProxyWriter<T: Send + Write> {
}

impl<T: 'static + Send + Write> ThreadProxyWriter<T> {

/// Create a new `ThreadProxyWriter` that will write to `writer` on a newly created thread
pub fn new(mut writer: T, buffer_size: usize) -> ThreadProxyWriter<T> {
let (tx, rx) = bounded::<Option<Vec<u8>>>(10);
Expand Down
Loading

0 comments on commit 243497d

Please sign in to comment.