summaryrefslogtreecommitdiffstats
path: root/tests-build/Cargo.toml
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-11-22 14:38:49 -0800
committerGitHub <noreply@github.com>2019-11-22 14:38:49 -0800
commite1b1e216c506a01a1f4ca579adae02f85b8db82b (patch)
tree77d5fcb2f241c7d1c6d4073e097e85d0fbf7c4fc /tests-build/Cargo.toml
parent7cd63fb94608ce8c70b8a7a7a4118cba658b3bcc (diff)
ci: bring back build tests (#1813)
This directory was deleted when `cargo hack` was introduced, however there were some tests that were still useful (macro failure output). Also, additional build tests will be added over time.
Diffstat (limited to 'tests-build/Cargo.toml')
-rw-r--r--tests-build/Cargo.toml15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests-build/Cargo.toml b/tests-build/Cargo.toml
new file mode 100644
index 00000000..68231d71
--- /dev/null
+++ b/tests-build/Cargo.toml
@@ -0,0 +1,15 @@
+[package]
+name = "tests-build"
+version = "0.1.0"
+authors = ["Tokio Contributors <team@tokio.rs>"]
+edition = "2018"
+publish = false
+
+[features]
+full = ["tokio/full"]
+
+[dependencies]
+tokio = { path = "../tokio", optional = true }
+
+[dev-dependencies]
+trybuild = "1.0"