summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-06-02 01:10:08 +0900
committerYuki Okushi <huyuumi.dev@gmail.com>2020-06-02 01:10:08 +0900
commita6920f9a5a9a835dc2bb4ba4347bb8a353ac30e6 (patch)
treeac98c49c6df288f68ebf39bca4780ca805203c8e
parent0e8dd5328caba4566562ef3bf72ec05c099893e9 (diff)
downloadrust-libc-a6920f9a5a9a835dc2bb4ba4347bb8a353ac30e6.tar.gz
Use ctest2 to drop old dependencies
-rw-r--r--libc-test/Cargo.toml2
-rw-r--r--libc-test/build.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml
index e080948ed2..00e0b5407c 100644
--- a/libc-test/Cargo.toml
+++ b/libc-test/Cargo.toml
@@ -11,7 +11,7 @@ default-features = false
[build-dependencies]
cc = "1.0"
# FIXME: Use fork ctest until the maintainer gets back.
-ctest = { git = "https://github.com/JohnTitor/ctest.git", branch = "old-ctest" }
+ctest2 = "0.3"
[features]
default = [ "std" ]
diff --git a/libc-test/build.rs b/libc-test/build.rs
index 2a113ac5b4..7cf82bce33 100644
--- a/libc-test/build.rs
+++ b/libc-test/build.rs
@@ -1,7 +1,7 @@
#![deny(warnings)]
extern crate cc;
-extern crate ctest;
+extern crate ctest2 as ctest;
use std::env;