barectf-parser 0.3.0

A Rust library to parse barectf-generated CTF trace data
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

pub use crate::config::*;
pub use crate::error::Error;
pub use crate::parser::{PacketDecoder, Parser};
pub use crate::types::*;

pub mod config;
pub mod error;
pub mod parser;
pub mod types;