1 unstable release

0.1.0 Nov 29, 2022

#196 in FFI

Download history 1615/week @ 2024-04-12 1655/week @ 2024-04-19 1596/week @ 2024-04-26 1384/week @ 2024-05-03 2186/week @ 2024-05-10 1472/week @ 2024-05-17 1264/week @ 2024-05-24 1328/week @ 2024-05-31 1098/week @ 2024-06-07 986/week @ 2024-06-14 1945/week @ 2024-06-21 1221/week @ 2024-06-28 1790/week @ 2024-07-05 2336/week @ 2024-07-12 1793/week @ 2024-07-19 1472/week @ 2024-07-26

7,510 downloads per month

MPL-2.0 license

125KB
4.5K SLoC

libefi-sys

Bindings to the libefi library on illumos.

Construction

This library is built using bindgen, following this tutorial: https://rust-lang.github.io/rust-bindgen/command-line-usage.html

Specifically, this was generated with:

$ bindgen --version
bindgen 0.63.0

$ bindgen wrapper.h -o src/lib.rs

The bindings are then modified to allow compilation without warning. This is done by prepending the following to lib.rs.

#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

No runtime deps