3 stable releases

new 2.0.1 Oct 24, 2024
1.0.0 Jun 18, 2024

#1448 in Network programming

Download history 985/week @ 2024-07-04 971/week @ 2024-07-11 1772/week @ 2024-07-18 3990/week @ 2024-07-25 2158/week @ 2024-08-01 3574/week @ 2024-08-08 4238/week @ 2024-08-15 4403/week @ 2024-08-22 4537/week @ 2024-08-29 3754/week @ 2024-09-05 3071/week @ 2024-09-12 5311/week @ 2024-09-19 3173/week @ 2024-09-26 3353/week @ 2024-10-03 2595/week @ 2024-10-10 4888/week @ 2024-10-17

15,147 downloads per month

MIT/Apache

215KB
4.5K SLoC

Maybenot FFI

This crate contains C FFI bindings for Maybenot, which let's you use Maybenot as a static library for languages other than Rust. Headers are found at maybenot-ffi/maybenot.h and are auto-generated when compiling using make.

Building

You need to have rust installed. cbindgen is also required: cargo install --force cbindgen Then just run make to build a static library at maybenot-ffi/libmaybenot.a.

Arguments to make, including default values:

  • DESTINATION=. - the directory where the output artifacts will be placed.
  • TARGET= override target architecture; cross-compile. Use rustup target to list and install targets.
  • PROFILE=release - override the cargo profile, valid options are release and debug.
  • CARGO=cargo - path to cargo.
  • CBINDGEN=cbindgen - path to cbindgen.
  • CARGO_TARGET_DIR=../../target - the build directory.

Example:

make TARGET=x86_64-unknown-linux-gnu PROFILE=debug

In order to link the resulting library to your program, you'll need to explicitly link some additional dependencies in addition to -lmaybenot. Run the following command to get an up-to-date list of the required flags for your platform:

RUSTFLAGS="--print native-static-libs" cargo build

Dependencies

~3.5–4.5MB
~86K SLoC