aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys/Cargo.toml
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2017-02-11 10:13:00 -0800
committerSteven Fackler <[email protected]>2017-02-11 10:13:00 -0800
commitf2c69ae7e9e9ab6c843c1de842551bb624e7eb2c (patch)
treeb507d4f207a37720d118bb75d86665d2d9a5da2d /openssl-sys/Cargo.toml
parentDocs (diff)
parentMerge pull request #568 from mredlek/x509_req_version_subject (diff)
downloadrust-openssl-f2c69ae7e9e9ab6c843c1de842551bb624e7eb2c.tar.xz
rust-openssl-f2c69ae7e9e9ab6c843c1de842551bb624e7eb2c.zip
Merge remote-tracking branch 'origin/master' into x509-builder
Diffstat (limited to 'openssl-sys/Cargo.toml')
-rw-r--r--openssl-sys/Cargo.toml12
1 files changed, 9 insertions, 3 deletions
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml
index 11c20a1c..76bd9172 100644
--- a/openssl-sys/Cargo.toml
+++ b/openssl-sys/Cargo.toml
@@ -1,12 +1,13 @@
[package]
name = "openssl-sys"
-version = "0.9.0"
+version = "0.9.6"
authors = ["Alex Crichton <[email protected]>",
"Steven Fackler <[email protected]>"]
license = "MIT"
description = "FFI bindings to OpenSSL"
repository = "https://github.com/sfackler/rust-openssl"
-documentation = "https://sfackler.github.io/rust-openssl/doc/v0.9.0/openssl_sys"
+documentation = "https://docs.rs/openssl-sys/0.9.6/openssl_sys"
+categories = ["cryptography", "external-ffi-bindings"]
links = "openssl"
build = "build.rs"
@@ -14,8 +15,13 @@ build = "build.rs"
libc = "0.2"
[build-dependencies]
-pkg-config = "0.3"
+pkg-config = "0.3.9"
+gcc = "0.3.42"
[target.'cfg(windows)'.dependencies]
user32-sys = "0.2"
gdi32-sys = "0.2"
+
+# We don't actually use metadeps for annoying reasons but this is still here for tooling
+[package.metadata.pkg-config]
+openssl = "1.0.1"