21 releases (10 stable)

24.3.25 Apr 12, 2024
23.5.26 Jun 3, 2023
23.1.21 Jan 24, 2023
22.12.6 Jan 24, 2023
0.3.0 Jun 6, 2016

#32 in Encoding

Download history 107411/week @ 2024-01-02 119306/week @ 2024-01-09 119323/week @ 2024-01-16 107853/week @ 2024-01-23 123007/week @ 2024-01-30 120647/week @ 2024-02-06 134406/week @ 2024-02-13 131462/week @ 2024-02-20 162357/week @ 2024-02-27 162242/week @ 2024-03-05 171544/week @ 2024-03-12 161994/week @ 2024-03-19 154634/week @ 2024-03-26 151647/week @ 2024-04-02 158950/week @ 2024-04-09 161683/week @ 2024-04-16

651,387 downloads per month
Used in 258 crates (48 directly)

Apache-2.0

110KB
2K SLoC

Flatbuffers

FlatBuffers is a cross platform serialization library architected for maximum memory efficiency. It allows you to directly access serialized data without parsing/unpacking it first, while still having great forwards/backwards compatibility. It was originally created at Google for game development and other performance-critical applications.

See our


lib.rs:

FlatBuffers

A library for memory-efficient serialization of data.

This crate provides runtime support for the FlatBuffers format in the Rust programming language. To use this crate, first generate code with the flatc compiler, as described here: https://google.github.io/flatbuffers/ Then, include that code into your project. Finally, add this crate to your Cargo.toml.

At this time, Rust support is experimental, and APIs may change between minor versions.

At this time, to generate Rust code, you will need the latest master version of flatc, available from here: https://github.com/google/flatbuffers (On OSX, you can install FlatBuffers from HEAD with the Homebrew package manager.)

Dependencies

~59–285KB