Skip to content

Commit

Permalink
Merge 1568f91 into aa92f23
Browse files Browse the repository at this point in the history
  • Loading branch information
nlhepler committed Oct 31, 2019
2 parents aa92f23 + 1568f91 commit bce3ec7
Show file tree
Hide file tree
Showing 3 changed files with 178 additions and 41 deletions.
9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,18 @@ failure = "0.1.5"
crossbeam-channel = "0.3.8"
failure_derive = "0.1"
min-max-heap = "1.2.2"
log = "^0.4"
rustc_version_runtime = "^0.1"
semver = "^0.9"

[dev-dependencies]
tempfile = "3.0"
tempfile = "^3.1"
criterion = "0.2.3"
fxhash = "0.2.1"
lazy_static = "1.2"
pretty_assertions = "0.5.1"
quickcheck = "0.8.5"
rand = "0.6.5"
quickcheck = "^0.9"
rand = "^0.7"
is_sorted = "0.1"

[[bench]]
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 bce3ec7

Please sign in to comment.