• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Announcing `bindgen` $TODO_VERSION
2
3`bindgen` automatically generates Rust FFI bindings to C and C++ libraries.
4
5Upgrade to this release by updating your `Cargo.toml`:
6
7```toml
8bindgen = "$TODO_VERSION"
9```
10
11* [GitHub][]
12* [crates.io][]
13* [Users Guide][guide]
14* [API Documentation][docs]
15
16## Changelog
17
18<insert CHANGELOG.md's "Unreleased" section here>
19
20## Friends
21
22Thanks to everyone who contributed to this release!
23
24<insert the output of friends.sh here>
25
26## Contributing
27
28Want to join us? Check out our [CONTRIBUTING.md][contributing] and take a look
29at some of these issues:
30
31* [Issues labeled "easy"][easy]
32* [Issues labeled "less easy"][less-easy]
33* Still can't find something to work on? [Drop a comment here.][looking]
34
35Want to help improve our documentation?
36[Check out the issues labeled "docs".][docs-issues]
37
38Found a bug with `bindgen`? [File an issue here.][file-issue]
39
40[GitHub]: https://github.com/rust-lang/rust-bindgen
41[crates.io]: https://crates.io/crates/bindgen
42[guide]: https://rust-lang.github.io/rust-bindgen
43[docs]: https://docs.rs/bindgen
44[contributing]: https://github.com/rust-lang/rust-bindgen/blob/main/CONTRIBUTING.md
45[easy]: https://github.com/rust-lang/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy
46[less-easy]: https://github.com/rust-lang/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-less-easy
47[looking]: https://github.com/rust-lang/rust-bindgen/issues/747
48[docs-issues]: https://github.com/rust-lang/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AI-needs-docs
49[file-issue]: https://github.com/rust-lang/rust-bindgen/issues/new
50