Skip to content

Latest commit

 

History

History

rust

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Rust MCAP library

A library for reading and writing Foxglove MCAP files. See the crate documentation for examples.

Design goals

  • Simple APIs: Users should be able to iterate over messages, with each automatically linked to its channel, and that channel linked to its schema. Users shouldn't have to manually track channel and schema IDs.

  • Performance: Writers shouldn't hold large buffers (e.g., the current chunk) in memory. Readers should support memory-mapped files to avoid needless copies and to let the OS do what it does best: loading and caching large files based on how you're actually reading them.

  • Resilience: Like MCAP itself, the library should let you recover every valid message from an incomplete file or chunk.

Building

By default this package will build with zstd compression support enabled. To build without the zstd dependency pass the --no-default-features flag:

cargo build --no-default-features