Merge pull request #22 from alexcrichton/cargo

Add a Cargo.toml configuration
This commit is contained in:
Steven Fackler 2014-06-25 12:15:06 -04:00
commit 5fb236128c
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

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

10
Cargo.toml Normal file
View File

@ -0,0 +1,10 @@
[package]
name = "openssl"
version = "0.0.1"
authors = ["Steven Fackler <sfackler@gmail.com"]
[[lib]]
name = "openssl"
path = "lib.rs"