v0.29.1
Bump version.
1 file changed
tree: 62943d190e2fd3e06a91727600e6c2841a979c6a
  1. .github/
  2. bindgen-integration/
  3. book/
  4. ci/
  5. src/
  6. tests/
  7. .gitattributes
  8. .gitignore
  9. .travis.yml
  10. appveyor.yml
  11. build.rs
  12. Cargo.lock
  13. Cargo.toml
  14. CONTRIBUTING.md
  15. example-graphviz-ir.png
  16. LICENSE
  17. README.md
  18. rustfmt.toml
README.md

bindgen

bindgen automatically generates Rust FFI bindings to C and C++ libraries.

For example, given the C header doggo.h:

typedef struct Doggo {
    int many;
    char wow;
} Doggo;

void eleven_out_of_ten_majestic_af(Doggo* pupper);

bindgen produces Rust FFI code allowing you to call into the doggo library's functions and use its types:

/* automatically generated by rust-bindgen */

#[repr(C)]
pub struct Doggo {
    pub many: ::std::os::raw::c_int,
    pub wow: ::std::os::raw::c_char,
}

extern "C" {
    pub fn eleven_out_of_ten_majestic_af(pupper: *mut Doggo);
}

Users Guide

📚 Read the bindgen users guide here! 📚

API Reference

API reference documentation is on docs.rs

Contributing

See CONTRIBUTING.md for hacking on bindgen!