Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added README for Rust Flatbuffers (before publishing v=2.0) #6652

Merged
merged 1 commit into from
May 16, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions rust/flatbuffers/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# 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
* [Tutorial](https://google.github.io/flatbuffers/flatbuffers_guide_tutorial.html)
* [Landing Page](https://google.github.io/flatbuffers/)
* [Rust sample binary](https://github.com/google/flatbuffers/blob/master/samples/sample_binary.rs)
* [Schema**less** format, Flexbuffers](https://crates.io/crates/flexbuffers)
* [Github](https://github.com/google/flatbuffers)