1 unstable release

0.1.0 Nov 29, 2022

#231 in FFI

Download history 1106/week @ 2023-12-14 634/week @ 2023-12-21 621/week @ 2023-12-28 1463/week @ 2024-01-04 1334/week @ 2024-01-11 1897/week @ 2024-01-18 1671/week @ 2024-01-25 2044/week @ 2024-02-01 1041/week @ 2024-02-08 1570/week @ 2024-02-15 1244/week @ 2024-02-22 1574/week @ 2024-02-29 2058/week @ 2024-03-07 1646/week @ 2024-03-14 1684/week @ 2024-03-21 1184/week @ 2024-03-28

6,858 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