symbolic-symcache 8.5.0

An optimizied cache file for fast and memory efficient lookup of symbols and stack frames in debugging information.
Documentation
//! Provides symcache support.

#![warn(missing_docs)]

mod cache;
mod error;
mod writer;

pub mod format;

pub use cache::*;
pub use error::*;
pub use writer::*;