From 64ecab27021b49b1286577a8d54323819273d611 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Tue, 19 Mar 2019 14:48:13 -0700 Subject: [PATCH] Move to libtest --- Cargo.toml | 3 ++- src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c0cd769..b99fa4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "compiletest_rs" -version = "0.3.19" +version = "0.3.20" authors = [ "The Rust Project Developers" , "Thomas Bracht Laumann Jespersen " , "Manish Goregaokar " @@ -26,6 +26,7 @@ serde_json = "1.0" serde_derive = "1.0" rustfix = "0.4.1" tester = { version = "0.5", optional = true } +libtest = "0.0.1" [target."cfg(unix)".dependencies] libc = "0.2" diff --git a/src/lib.rs b/src/lib.rs index ec58872..0124c73 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,7 +20,7 @@ extern crate rustc; #[cfg(unix)] extern crate libc; -extern crate test; +extern crate libtest as test; #[cfg(feature = "tmp")] extern crate tempfile;