1 unstable release

0.1.0 Nov 29, 2022

#219 in FFI

Download history 1683/week @ 2024-11-17 763/week @ 2024-11-24 894/week @ 2024-12-01 1231/week @ 2024-12-08 1778/week @ 2024-12-15 17/week @ 2024-12-22 76/week @ 2024-12-29 1037/week @ 2025-01-05 1710/week @ 2025-01-12 961/week @ 2025-01-19 1609/week @ 2025-01-26 1499/week @ 2025-02-02 1026/week @ 2025-02-09 2189/week @ 2025-02-16 3040/week @ 2025-02-23 1963/week @ 2025-03-02

8,253 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