diff options
| author | Steven Fackler <[email protected]> | 2016-08-09 22:52:12 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-09 22:52:12 -0700 |
| commit | 67b5b4d814066eaf0debbe3b95d68ae0d7b9226a (patch) | |
| tree | f8c2565e72f41cab21bead5aadadbbdb17dd7afe /openssl/src/crypto/mod.rs | |
| parent | Fix build (diff) | |
| download | rust-openssl-67b5b4d814066eaf0debbe3b95d68ae0d7b9226a.tar.xz rust-openssl-67b5b4d814066eaf0debbe3b95d68ae0d7b9226a.zip | |
Make hmac support optional and remove openssl-sys-extras
rust-openssl no longer requires headers for the default feature set.
Diffstat (limited to 'openssl/src/crypto/mod.rs')
| -rw-r--r-- | openssl/src/crypto/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl/src/crypto/mod.rs b/openssl/src/crypto/mod.rs index 453291aa..93aba9eb 100644 --- a/openssl/src/crypto/mod.rs +++ b/openssl/src/crypto/mod.rs @@ -15,6 +15,7 @@ // pub mod hash; +#[cfg(feature = "hmac")] pub mod hmac; pub mod pkcs5; pub mod pkey; |