diff options
| author | Steven Fackler <[email protected]> | 2018-06-10 08:41:07 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-06-10 08:41:07 -0700 |
| commit | 0f815628b4cadebbdd02733e65c33a728779760f (patch) | |
| tree | a9559c3a76b3b8e1ce43f065eb571eb48e742d0e /openssl-sys/src/libressl/mod.rs | |
| parent | Merge pull request #936 from sfackler/windows-static (diff) | |
| parent | Switch to accessors in libressl where possible (diff) | |
| download | rust-openssl-0f815628b4cadebbdd02733e65c33a728779760f.tar.xz rust-openssl-0f815628b4cadebbdd02733e65c33a728779760f.zip | |
Merge pull request #946 from sfackler/libressl-accessors
Switch to accessors in libressl where possible
Diffstat (limited to 'openssl-sys/src/libressl/mod.rs')
| -rw-r--r-- | openssl-sys/src/libressl/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openssl-sys/src/libressl/mod.rs b/openssl-sys/src/libressl/mod.rs index 0080fc7d..c65f6464 100644 --- a/openssl-sys/src/libressl/mod.rs +++ b/openssl-sys/src/libressl/mod.rs @@ -8,11 +8,15 @@ use std::sync::{Once, ONCE_INIT}; pub use libressl::v250::*; #[cfg(libressl251)] pub use libressl::v251::*; +#[cfg(libressl273)] +pub use libressl::v273::*; #[cfg(not(libressl251))] mod v250; #[cfg(libressl251)] mod v251; +#[cfg(libressl273)] +mod v273; #[repr(C)] pub struct stack_st_ASN1_OBJECT { |