Depend on libc from crates.io

This commit is contained in:
Luca Barbieri 2020-04-10 22:42:19 +02:00 committed by Mark Rousskov
parent 1f3b65921e
commit 45ede927fb
9 changed files with 8 additions and 8 deletions

View file

@ -10,6 +10,7 @@ path = "lib.rs"
doctest = false
[dependencies]
libc = "0.2"
log = "0.4"
rayon = { version = "0.3.0", package = "rustc-rayon" }
smallvec = { version = "1.0", features = ["union", "may_dangle"] }

View file

@ -6,9 +6,6 @@
#![feature(generators)]
#![recursion_limit = "256"]
#[cfg(unix)]
extern crate libc;
mod callbacks;
pub mod interface;
mod passes;