#cpp #compiler #build-dependencies #c

cpp_common

Implementation details crate for the cpp crate

16 releases

0.5.9 Aug 16, 2023
0.5.8 Mar 30, 2023
0.5.7 Apr 29, 2022
0.5.6 Dec 29, 2020
0.2.1 Mar 22, 2017

#143 in FFI

Download history 42887/week @ 2023-11-20 71556/week @ 2023-11-27 71533/week @ 2023-12-04 58304/week @ 2023-12-11 58259/week @ 2023-12-18 33620/week @ 2023-12-25 45027/week @ 2024-01-01 64107/week @ 2024-01-08 58971/week @ 2024-01-15 78247/week @ 2024-01-22 70916/week @ 2024-01-29 68314/week @ 2024-02-05 68708/week @ 2024-02-12 115527/week @ 2024-02-19 111307/week @ 2024-02-26 79220/week @ 2024-03-04

378,914 downloads per month
Used in 277 crates (2 directly)

MIT/Apache

13KB
236 lines

rust-cpp - Embed C++ code directly in Rust

Documentation

Overview

rust-cpp is a build tool & macro which enables you to write C++ code inline in your rust code.

let name = std::ffi::CString::new("World").unwrap();
let name_ptr = name.as_ptr();
let r = unsafe {
    cpp!([name_ptr as "const char *"] -> u32 as "int32_t" {
        std::cout << "Hello, " << name_ptr << std::endl;
        return 42;
    })
};
assert_eq!(r, 42)

The crate also help to expose some C++ class to Rust by automatically implementing trait such as Drop, Clone (if the C++ type can be copied), and others

cpp_class!{
    #[derive(PartialEq)]
    unsafe struct MyClass as "std::unique_ptr<MyClass>"
}

Usage

For usage information and in-depth documentation, see the cpp crate module level documentation.

Differences with the cxx crate

This crate allows to write C++ code "inline" within your Rust functions, while with the cxx crate, you have to write a bit of boiler plate to have calls to functions declared in a different .cpp file.

Having C++ code inline might be helpful when trying to call to a C++ library and that one may wish to make plenty of call to small snippets. It can otherwise be fastidious to write and maintain the boiler plate for many small functions in different places.

These crate can also be used in together. The cxx crate offer some useful types such as CxxString that can also be used with this crate.

The cxx bridge does more type checking which can avoid some classes of errors. While this crate can only check for equal size and alignment.

Dependencies

~360–800KB
~19K SLoC