The official library for working with the Databento Binary Encoding (DBN, formerly DBZ).
To read a DBN file with MBO data and print each row: ```rust use dbn::{ decode::dbn::Decoder, records::MboMsg, }; use streaming_iterator::StreamingIterator;
let mut dbnstream = Decoder::fromzstdfile("20201228.dbn.zst")?.decodestream::
See the docs for more detailed usage.
Distributed under the Apache 2.0 License.