Importing crossbeam_channel from crossbeam reexport.

This commit is contained in:
Paul Masurel
2018-11-19 09:19:28 +09:00
parent 7b9752f897
commit 8b0b0133dd
3 changed files with 1 additions and 3 deletions

View File

@@ -34,7 +34,6 @@ levenshtein_automata = {version="0.1", features=["fst_automaton"]}
bit-set = "0.5"
uuid = { version = "0.7", features = ["v4", "serde"] }
crossbeam = "0.5"
crossbeam-channel = "0.3"
futures = "0.1"
futures-cpupool = "0.1"
owning_ref = "0.4"

View File

@@ -8,7 +8,7 @@ use core::SegmentComponent;
use core::SegmentId;
use core::SegmentMeta;
use core::SegmentReader;
use crossbeam_channel as channel;
use crossbeam::channel;
use docset::DocSet;
use error::TantivyError;
use fastfield::write_delete_bitset;

View File

@@ -133,7 +133,6 @@ extern crate byteorder;
extern crate combine;
extern crate crossbeam;
extern crate crossbeam_channel;
extern crate fnv;
extern crate fst;
extern crate fst_regex;