diff options
| author | Steven Fackler <[email protected]> | 2015-02-07 21:28:54 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-02-07 21:30:05 -0800 |
| commit | ec65b0c67b452539fded5e06cbb6ce1d165074e0 (patch) | |
| tree | c50c22c2ce4ca095149c96a0f3a3b935b4012a5c /openssl/Cargo.toml | |
| parent | Fix deprecation warnings in openssl-sys (diff) | |
| download | rust-openssl-ec65b0c67b452539fded5e06cbb6ce1d165074e0.tar.xz rust-openssl-ec65b0c67b452539fded5e06cbb6ce1d165074e0.zip | |
Move docs to this repo and auto build
Diffstat (limited to 'openssl/Cargo.toml')
| -rw-r--r-- | openssl/Cargo.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml new file mode 100644 index 00000000..f0b7a39b --- /dev/null +++ b/openssl/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "openssl" +version = "0.3.1" +authors = ["Steven Fackler <[email protected]>"] +license = "Apache-2.0" +description = "OpenSSL bindings" +repository = "https://github.com/sfackler/rust-openssl" +documentation = "https://sfackler.github.io/rust-openssl/doc/openssl" +readme = "README.md" +keywords = ["crypto", "tls", "ssl"] + +[features] +tlsv1_2 = ["openssl-sys/tlsv1_2"] +tlsv1_1 = ["openssl-sys/tlsv1_1"] +sslv2 = ["openssl-sys/sslv2"] +aes_xts = ["openssl-sys/aes_xts"] + +[dependencies.openssl-sys] +path = "../openssl-sys" +version = "0.3.1" + +[dev-dependencies] +rustc-serialize = "0.2" |