Skip to content

Commit

Permalink
Re-export ffi crate and foreign-types traits
Browse files Browse the repository at this point in the history
  • Loading branch information
dhouck committed Aug 26, 2023
1 parent 2db5377 commit 660c35f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions openssl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,13 @@
#[doc(inline)]
pub use ffi::init;

#[doc(no_inline, alias = "sys", alias = "openssl-sys", alias = "openssl_sys")]
/// Re-export of the `openssl-sys` crate
pub use ffi;
#[doc(no_inline)]
/// Re-export of `ForeignType` traits
pub use foreign_types::{ForeignType,ForeignTypeRef};

use libc::c_int;

use crate::error::ErrorStack;
Expand Down

0 comments on commit 660c35f

Please sign in to comment.