Fix unused import on windows

This commit is contained in:
David Tolnay 2017-04-09 14:11:27 -07:00
parent 528ec3cdd8
commit e133b8b708
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -4,10 +4,12 @@ extern crate serde_derive;
use std::collections::{BTreeMap, HashMap, HashSet};
use std::net;
use std::path::{Path, PathBuf};
use std::str;
use std::time::Duration;
use std::ffi::CString;
#[cfg(unix)]
use std::str;
extern crate serde;
extern crate serde_test;