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" +