aboutsummaryrefslogtreecommitdiff
path: root/openssl/Cargo.toml
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-03-29 10:18:30 -0700
committerSteven Fackler <[email protected]>2015-03-29 10:18:30 -0700
commit2b1a9a7814293d50829a60d42f4e8f2ea0353bd7 (patch)
tree036c0d00d49c85bfdc9a8e320ec7e1dd63a8b04f /openssl/Cargo.toml
parentMerge pull request #191 from fhartwig/rustup (diff)
downloadrust-openssl-2b1a9a7814293d50829a60d42f4e8f2ea0353bd7.tar.xz
rust-openssl-2b1a9a7814293d50829a60d42f4e8f2ea0353bd7.zip
Fix verify data free function
Turns out this is called with a null pointer if you never set the data which didn't end up doing anything until the recent zeroing drop changes. Also use a map of indexes since statics in generic functions don't monomorphize
Diffstat (limited to 'openssl/Cargo.toml')
-rw-r--r--openssl/Cargo.toml5
1 files changed, 2 insertions, 3 deletions
diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml
index 6ba69781..8bfc8aca 100644
--- a/openssl/Cargo.toml
+++ b/openssl/Cargo.toml
@@ -21,10 +21,9 @@ path = "../openssl-sys"
version = "0.5.2"
[dependencies]
+bitflags = "0.1.1"
+lazy_static = "0.1"
libc = "0.1"
[dev-dependencies]
rustc-serialize = "0.3"
-
-[dependencies]
-bitflags = "0.1.1"