diff options
| author | Steven Fackler <[email protected]> | 2014-06-25 12:15:06 -0400 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-06-25 12:15:06 -0400 |
| commit | 5fb236128c4c552ace49c2d1f72a8996ee8d05d6 (patch) | |
| tree | 271790a197fba1c667da5cd79f2a840859715730 | |
| parent | Merge pull request #21 from ebfe/remove-bytes (diff) | |
| parent | Add a Cargo.toml configuration (diff) | |
| download | rust-openssl-5fb236128c4c552ace49c2d1f72a8996ee8d05d6.tar.xz rust-openssl-5fb236128c4c552ace49c2d1f72a8996ee8d05d6.zip | |
Merge pull request #22 from alexcrichton/cargo
Add a Cargo.toml configuration
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Cargo.toml | 10 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,4 @@ /doc/ /build/ /Makefile +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..e146501d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,10 @@ +[package] + +name = "openssl" +version = "0.0.1" +authors = ["Steven Fackler <[email protected]"] + +[[lib]] + +name = "openssl" +path = "lib.rs" |