Skip to content

Commit

Permalink
Merge pull request #162 from laumann/rustup
Browse files Browse the repository at this point in the history
Move to libtest
  • Loading branch information
Manishearth authored Mar 19, 2019
2 parents e2056b1 + 64ecab2 commit 3e99253
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <laumann.thomas@gmail.com>"
, "Manish Goregaokar <manishsmail@gmail.com>"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 3e99253

Please sign in to comment.