aboutsummaryrefslogtreecommitdiff
path: root/openssl/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/Cargo.toml')
-rw-r--r--openssl/Cargo.toml23
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"