• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Publish Your Crate!
2
3That's it! Now we can publish our crate on crates.io and we can write a nice,
4Rust-y API wrapping the raw FFI bindings in a safe interface. However, there is
5already a [`bzip2-sys`][bz-sys] crate providing raw FFI bindings, and there is
6already a [`bzip2`][bz] crate providing a nice, safe, Rust-y API on top of the
7bindings, so we have nothing left to do here!
8
9Check out the [full code on Github!][example]
10
11[bz-sys]: https://crates.io/crates/bzip2-sys
12[bz]: https://crates.io/crates/bzip2
13[example]: https://github.com/fitzgen/bindgen-tutorial-bzip2-sys
14