diff options
| -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" |