Add Cargo.toml

This commit is contained in:
Petar Radosevic 2014-06-25 21:21:01 +02:00
parent 74e2fb0276
commit 7e1561335f
2 changed files with 20 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/doc/
/build/
/Makefile
/target/

19
Cargo.toml Normal file
View File

@ -0,0 +1,19 @@
[package]
name = "rust-postgres"
version = "0.10.0"
authors = [ "Steven Fackler <sfackler@gmail.com>" ]
[[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"