From 7e1561335f2d7171fbb6895ea5c4a9594e615f62 Mon Sep 17 00:00:00 2001 From: Petar Radosevic Date: Wed, 25 Jun 2014 21:21:01 +0200 Subject: [PATCH] Add Cargo.toml --- .gitignore | 1 + Cargo.toml | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore index ff7df192..675274f8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /doc/ /build/ /Makefile +/target/ diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..7f3fea29 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,19 @@ +[package] + +name = "rust-postgres" +version = "0.10.0" +authors = [ "Steven Fackler " ] + +[[lib]] + +name = "postgres" +path = "src/lib.rs" + +[dependencies.openssl] + +git = "https://github.com/sfackler/rust-openssl" + +[dependencies.phf_mac] + +git = "https://github.com/sfackler/rust-phf" +