Remove unused libc dependency
This commit is contained in:
parent
fe9cd01b82
commit
66c1662537
3 changed files with 0 additions and 3 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
|
@ -328,7 +328,6 @@ dependencies = [
|
||||||
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"image 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"image 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"itertools 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"itertools 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"miniz_oxide 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"miniz_oxide 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"rayon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"rayon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,6 @@ byteorder = "^1.0.0"
|
||||||
crc = "^1.2.0"
|
crc = "^1.2.0"
|
||||||
glob = "0.2.11"
|
glob = "0.2.11"
|
||||||
itertools = "^0.7.0"
|
itertools = "^0.7.0"
|
||||||
libc = "^0.2.4"
|
|
||||||
num_cpus = "^1.0.0"
|
num_cpus = "^1.0.0"
|
||||||
rayon = "^0.9.0"
|
rayon = "^0.9.0"
|
||||||
zopfli = "^0.3.4"
|
zopfli = "^0.3.4"
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,6 @@ extern crate byteorder;
|
||||||
extern crate crc;
|
extern crate crc;
|
||||||
extern crate image;
|
extern crate image;
|
||||||
extern crate itertools;
|
extern crate itertools;
|
||||||
extern crate libc;
|
|
||||||
extern crate miniz_oxide;
|
extern crate miniz_oxide;
|
||||||
extern crate num_cpus;
|
extern crate num_cpus;
|
||||||
extern crate rayon;
|
extern crate rayon;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue