summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2018-08-25 10:01:07 -0400
committerAndrew Gallant <jamslam@gmail.com>2018-08-25 10:01:36 -0400
commit9574d89634031259802dd68ebaf0c69efc68b171 (patch)
tree86ff735d4f8407a7a14c1ee1ac6eca743f1808ef /src/main.rs
parent5c5c538601b2dd4d95eab22fd216a3157049c966 (diff)
deps: use crossbeam-channel instead of chan
This also drops an ancient rand 0.3 dependency.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index c1465a3..64b3edc 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,5 +1,5 @@
extern crate byteorder;
-extern crate chan;
+extern crate crossbeam_channel as channel;
extern crate csv;
extern crate csv_index;
extern crate docopt;