]> git.proxmox.com Git - cargo.git/blobdiff - tests/testsuite/build.rs
Upgrade to Rust 2018
[cargo.git] / tests / testsuite / build.rs
index 3bf70548d994f62df1fffe4da7dd3f143f62d952..9d65e8e56d5bb964bda87284a3a8c89102049ac3 100644 (file)
@@ -3,13 +3,13 @@ use std::fs::{self, File};
 use std::io::prelude::*;
 
 use cargo::util::paths::dylib_path_envvar;
-use support::paths::{root, CargoPathExt};
-use support::registry::Package;
-use support::ProjectBuilder;
-use support::{
+use crate::support::paths::{root, CargoPathExt};
+use crate::support::registry::Package;
+use crate::support::ProjectBuilder;
+use crate::support::{
     basic_bin_manifest, basic_lib_manifest, basic_manifest, is_nightly, rustc_host, sleep_ms,
 };
-use support::{main_file, project, Execs};
+use crate::support::{main_file, project, Execs};
 
 #[test]
 fn cargo_compile_simple() {