From e0257e3da1be979d14e0a4648e535ddb9f743c9a Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 12 Jul 2014 13:28:23 -0700 Subject: [PATCH] Add test target to Cargo config --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index f88ca8e5..8e55132f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,11 @@ authors = [ "Steven Fackler " ] name = "postgres" path = "src/lib/lib.rs" +[[test]] + +name = "test" +path = "src/test/test.rs" + [dependencies.openssl] git = "https://github.com/sfackler/rust-openssl"