diff options
| author | Steven Fackler <[email protected]> | 2014-11-21 22:21:37 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-11-21 22:21:37 -0800 |
| commit | b084ddc7b0fe9c7816fef6e415a05db6ec43fb71 (patch) | |
| tree | 8ae4dc3a0e319ac24e6d21444db6fc0e464e3c1d | |
| parent | Merge pull request #102 from vhbit/fix-neg-serials (diff) | |
| download | rust-openssl-b084ddc7b0fe9c7816fef6e415a05db6ec43fb71.tar.xz rust-openssl-b084ddc7b0fe9c7816fef6e415a05db6ec43fb71.zip | |
Add license and description
| -rw-r--r-- | Cargo.toml | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -3,6 +3,8 @@ name = "openssl" version = "0.0.1" authors = ["Steven Fackler <[email protected]"] +license = "ASL2.0" +description = "OpenSSL bindings" [features] tlsv1_2 = ["openssl-sys/tlsv1_2"] @@ -11,21 +13,21 @@ sslv2 = ["openssl-sys/sslv2"] aes_xts = ["openssl-sys/aes_xts"] [target.i686-apple-darwin.dependencies.openssl-sys] - path = "openssl-sys" +path = "openssl-sys" [target.x86_64-apple-darwin.dependencies.openssl-sys] - path = "openssl-sys" +path = "openssl-sys" [target.i686-unknown-linux-gnu.dependencies.openssl-sys] - path = "openssl-sys" +path = "openssl-sys" [target.x86_64-unknown-linux-gnu.dependencies.openssl-sys] - path = "openssl-sys" +path = "openssl-sys" [target.i686-unknown-freebsd.dependencies.openssl-sys] - path = "openssl-sys" +path = "openssl-sys" [target.x86_64-unknown-freebsd.dependencies.openssl-sys] - path = "openssl-sys" +path = "openssl-sys" [target.arm-apple-ios.dependencies.openssl-sys] - path = "openssl-sys" +path = "openssl-sys" [target.i386-apple-ios.dependencies.openssl-sys] - path = "openssl-sys" +path = "openssl-sys" [target.le32-unknown-nacl.dependencies.libressl-pnacl-sys] git = "https://github.com/DiamondLovesYou/libressl-pnacl-sys.git" |