summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2015-11-14 11:13:21 -0500
committerAndrew Gallant <jamslam@gmail.com>2015-11-14 11:13:21 -0500
commit93fdb4832b7ff9142f89c7514fcedf3bcbd95ad6 (patch)
tree2bb01a6a02a79cd5292ee0d2b37f03b5dc4c1934 /src/main.rs
parentc51c926973147cb03f80fc323677023c0d4f0f00 (diff)
Just use the num_cpus crate instead of rolling our own.
Fixes #26.
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 34eeaf2..a3daea6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -9,7 +9,7 @@ extern crate chan;
extern crate csv;
extern crate docopt;
extern crate filetime;
-extern crate libc;
+extern crate num_cpus;
extern crate rand;
extern crate regex;
extern crate rustc_serialize;