• Home
Name Date Size #Lines LOC

..--

src/22-Oct-2025-3,2632,163

Cargo.tomlD22-Oct-2025655 2521

README.mdD22-Oct-2025736 1612

build.rsD22-Oct-2025331 137

README.md

1# Flatbuffers
2
3FlatBuffers is a cross platform serialization library architected for maximum
4memory efficiency. It allows you to directly access serialized data without
5parsing/unpacking it first, while still having great forwards/backwards
6compatibility. It was originally created at Google for game development and
7other performance-critical applications.
8
9## See our
10* [Tutorial](https://google.github.io/flatbuffers/flatbuffers_guide_tutorial.html)
11* [Landing Page](https://google.github.io/flatbuffers/)
12* [Rust sample binary](https://github.com/google/flatbuffers/blob/master/samples/sample_binary.rs)
13* [Schema**less** format, Flexbuffers](https://crates.io/crates/flexbuffers)
14* [Github](https://github.com/google/flatbuffers)
15
16