Module Linker
cbindgen
Module Linker | cbindgen | |
---|---|---|
1 | 21 | |
250 | 2,368 | |
- | 1.9% | |
0.0 | 7.9 | |
about 3 years ago | about 2 months ago | |
JavaScript | Rust | |
MIT License | Mozilla Public License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Module Linker
cbindgen
-
SlateDB – An embedded database built on object storage
Rust is just another programming language that’s quite similar to C++. The main difference is there’s like 4 types for String (some are references and some are owned) and methods for a struct go in a `impl StructName` block after the struct definition instead of inside it.
I don’t really know rust either but I’m currently writing some bindings to expose Rust libraries to NodeJS and not having too much trouble.
For rust -> c++ I googled one time and found this tool which Mozilla seems to use to call Rust from C++ in their web browser, maybe it would “just work”: https://github.com/mozilla/cbindgen?tab=readme-ov-file
-
cargo-c common questions
To not generate the header using cbindgen, it will copy the header {crate name}.h from the assets/ directory.
-
Hello World in Go From Rust
Golang uses cgo to communicate with external C libraries and Rust uses FFI (Foreign function interfaces) to export C functions. Additionally, a library for automatically generating bindings can be used to generate the header files (.h). In our case, we'll only be exporting two C functions, so using cbindgen is overkill but we'll use it regardless because why not? Firstly, we'll write the rust functions we want to export. We'll start by creating a new rust library:
-
Ask HN: Automating multi-lang communication with a meta programming language
[1]: https://github.com/mozilla/cbindgen
-
Nim v2.0 Released
As a 2-step approach, you could also probably use https://github.com/mozilla/cbindgen and then Nim's native C FFI.
-
ffizz: Build a Beautiful C API in Rust
The tooling for the first kind -- calling Rust from another language -- is a bit less developed, and tends to rely on code generation that doesn't necessarily produce a natural C API. cbindgen, uniffi, cxx, and Diplomat all take this course.
-
How can I use rust libraries in zig/C
There's also cbindgen for automating the generation of C headers once you've got your code in the right shape and you'll also want to read the Rustonomicon.
-
C Strings and my slow descent to madness
You can backport Rust standard library to C using https://github.com/eqrion/cbindgen .
-
Rust FFI and cbindgen: Integrating Embedded Rust Code in C
Later we'll see what cbindgen essentially does is receive a configuration and a Rust library and then spit out a C header (.h) file. One might think that what cbindgen is doing might not be that special and can be done by hand. In which some cases that might be true if the project is simple enough. Though additionally as the cbindgen documentation states:
-
Nautilus just fucked me. (Gnome paper cuts)
Fuck it, I'll take the bait. Rust allows for amazing C interop by allowing for exporting of C types as a dynamic library, like C. Unlike C, this still allows for Rust's advanced checking at compile time. librsvg is one such library that is being used in the GTK ecosystem that is also almost completely Rust. You can use tools like cbindgen to generate C bindings.
What are some alternatives?
gdbgui - Browser-based frontend to gdb (gnu debugger). Add breakpoints, view the stack, visualize data structures, and more in C, C++, Go, Rust, and Fortran. Run gdbgui from the terminal and a new tab will open in your browser.
rust-bindgen - THIS CRATE IS DEPRECATED, please use https://github.com/servo/rust-bindgen.
just - 🤖 Just a command runner
cxx - Safe interop between Rust and C++
rr - Record and Replay Framework
rusty-cheddar - A Rust crate for automatically generating C header files from Rust source file.
sublime-rust - The official Sublime Text 4 package for the Rust Programming Language
flutter_rust_bridge - Flutter/Dart <-> Rust binding generator, feature-rich, but seamless and simple.
rust-cross - Everything you need to know about cross compiling Rust programs!
tch-rs - Rust bindings for the C++ api of PyTorch.
CodeLLDB - A native debugger extension for VSCode based on LLDB
Clippy - A bunch of lints to catch common mistakes and improve your Rust code. Book: https://doc.rust-lang.org/clippy/