Remove unwanted build dependents for default build

This commit is contained in:
2022-03-17 11:28:28 +08:00
parent ade48a8013
commit 6e049fdb23
2 changed files with 10 additions and 3 deletions

View File

@@ -1,10 +1,17 @@
#[cfg(feature = "bindgen")]
extern crate bindgen;
#[cfg(feature = "cmake")]
extern crate cmake;
#[cfg(any(feature = "exif"))]
use std::env;
#[cfg(any(feature = "exif"))]
use std::fs::create_dir;
#[cfg(any(feature = "exif"))]
use std::fs::File;
#[cfg(any(feature = "exif"))]
use std::io::Read;
#[cfg(any(feature = "exif"))]
use std::path::PathBuf;
fn main() {