#cbindgen #bindgen #wrapper #compatible #boxed #abi #c-abi

ffi_types

C ABI compatible wrappers for cbindgen/bindgen

15 releases

Uses new Rust 2024

0.0.17 Aug 25, 2025
0.0.16 Jul 28, 2025
0.0.15 Apr 14, 2025
0.0.13 Nov 4, 2024
0.0.5 Mar 8, 2024

#65 in FFI

Download history 420/week @ 2025-07-18 389/week @ 2025-07-25 1216/week @ 2025-08-01 446/week @ 2025-08-08 260/week @ 2025-08-15 805/week @ 2025-08-22 1152/week @ 2025-08-29 242/week @ 2025-09-05 278/week @ 2025-09-12 906/week @ 2025-09-19 757/week @ 2025-09-26 26/week @ 2025-10-03 768/week @ 2025-10-10 546/week @ 2025-10-17 1053/week @ 2025-10-24 580/week @ 2025-10-31

2,947 downloads per month

BSD-2-Clause

32KB
875 lines

ffi_types

This repository provides C-ABI compatible basic Rust types including box, slice, str and boxed slice/str. By carefully following instructions, the types are bindgen/cbindgen compatible and owned values are safe under C++.

The project consists of 2 parts. A rust crate of #[repr(C)] wrappers of rust types and a header file for C++ (or a few more later).

The conversions are intended to be zero-cost.

TODO: link to docs and examples

CBindgen

Use ffi_types::cbindgen::with_cxx_ffi_types() to add proper configuration to cbindgen::Builder.

Bindgen

Block the provided header to blocklist_file. Replace all root::ffi_types:: to ffi_types:: in generated file.

Not the best choice for FFI

If you start a new project, please check cxx fits in your case.

Since the goal of ffi_types is exposing Rust type to C++ side, you need access to C++ code base.

ffi_types only provides types. Nothing is automatic. You still need to manage bindgen/cbindgen.

MSVC is very picky. ffi_types limits convenience initializers for C-prefixed types for MSVC. It will be less convenient and more unsafe.

Dependencies

~0–5MB
~112K SLoC